From 76a8e2f8d1994babedb3612f09df8d3a5cc9b253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNandanAnantharamu=E2=80=9D?= <“nandan@thinkify.io”> Date: Tue, 17 Dec 2024 23:59:49 +0530 Subject: [PATCH 1/5] test: adding tests for jsobject regression tests --- .../JSObject/JSObject_Tests_spec.ts | 292 ++++++++++++++++++ app/client/cypress/limited-tests.txt | 3 +- .../cypress/support/Pages/EntityExplorer.ts | 1 + app/client/cypress/support/Pages/JSEditor.ts | 3 + 4 files changed, 298 insertions(+), 1 deletion(-) create mode 100644 app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts diff --git a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts new file mode 100644 index 00000000000..792183ed011 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts @@ -0,0 +1,292 @@ +import HomePage from "../../../../locators/HomePage"; +import { + agHelper, + entityExplorer, + jsEditor, + propPane, + draggableWidgets, + locators, + debuggerHelper, + dataSources, + assertHelper, + table, +} from "../../../../support/ee/ObjectsCore_EE"; +import EditorNavigation, { + EntityType, + PageLeftPane, + PagePaneSegment, +} from "../../../../support/Pages/EditorNavigation"; +import PageList from "../../../../support/Pages/PageList"; + +describe("Validate JSObj", {}, () => { + before(() => {}); + + it("1. Verify adding/deleting JSObject and more actions options", () => { + jsEditor.CreateJSObject( + `setInterval(() => { + showAlert("Hi", "success") + }, 2500, "Int")`, + { + paste: true, + completeReplace: false, + toRun: true, + shouldCreateNewJSObj: true, + }, + ); + jsEditor.EnableDisableAsyncFuncSettings("myFun1"); + + // Add new JSObject + PageList.AddNewPage("New blank page"); + PageLeftPane.switchSegment(PagePaneSegment.JS); + agHelper.GetNClick(locators._createNew); + agHelper.GetNClick(jsEditor._addJSObj); + agHelper.AssertContains("JSObject2", "exist", entityExplorer._entityName); + agHelper.GetNClick(EditorNavigation.locators.MinimizeBtn); + EditorNavigation.CloseAnnouncementModal(); + // List view + agHelper.GetNClick('[data-testid="t--list-toggle"]'); + agHelper.AssertContains("JSObject1", "exist", entityExplorer._entityName); + agHelper.AssertContains("JSObject2", "exist", entityExplorer._entityName); + // Verify menu item in List view + agHelper.GetNClick(jsEditor._jsPageActions, 0, true); + agHelper.AssertContains("Rename", "exist", HomePage.portalMenuItem); + agHelper.AssertContains("Show bindings", "exist", HomePage.portalMenuItem); + agHelper.AssertContains("Copy to page", "exist", HomePage.portalMenuItem); + agHelper.AssertContains("Move to page", "exist", HomePage.portalMenuItem); + agHelper.AssertContains("Delete", "exist", HomePage.portalMenuItem); + + // Add JSObj in List view + agHelper.GetNClick(jsEditor._addJSObj, 0, true); + agHelper.GetNClick(EditorNavigation.locators.MaximizeBtn); + agHelper.AssertContains("JSObject2", "exist", entityExplorer._entityName); + + // Delete JSObj + agHelper.GetNClick(jsEditor._addJSObj, 0, true); + agHelper.GetNClick(jsEditor._moreActions, 0, true); + agHelper.GetNClickByContains(HomePage.portalMenuItem, "Delete"); + agHelper.GetNClickByContains(HomePage.portalMenuItem, "Are you sure?"); + agHelper.ValidateToastMessage("JSObject4 deleted successfully"); + + // Verify Copy to Page + // agHelper.GetNClick(jsEditor._moreActions, 0, true); + // agHelper.GetNClickByContains(HomePage.portalMenuItem, "Copy to page"); + // agHelper.GetNClickByContains(HomePage.portalMenuItem, "Page1"); + // agHelper.ValidateToastMessage( + // "JSObject3 copied to page Page1 successfully", + // ); + // agHelper.AssertContains("JSObject3", "exist", entityExplorer._entityName); + + // Verify Rename + // agHelper.GetNClick(jsEditor._moreActions, 0, true); + // agHelper.AssertContains("Rename", "exist", HomePage.portalMenuItem); + // agHelper.GetNClickByContains(HomePage.portalMenuItem, 'Rename'); + // agHelper.ClearNType('[value="JSObject3"]', 'JSObject3New'); + // agHelper.AssertContains("JSObject3New", "exist", entityExplorer._entityName); + // agHelper.AssertContains("Copy to page", "exist", HomePage.portalMenuItem); + }); + + it("2. Verify alert message on page load and adding Function 2 to remove message", () => { + // Verify alert message on page load + EditorNavigation.NavigateToPage("Page1", true); + agHelper.ValidateToastMessage("Hi"); + PageLeftPane.switchSegment(PagePaneSegment.JS); + jsEditor.CreateJSObject(`clearInterval("Int")`, { + paste: true, + completeReplace: false, + shouldCreateNewJSObj: false, + lineNumber: 10, + }); + jsEditor.SelectFunctionDropdown("myFun2"); + jsEditor.RunJSObj(); + agHelper.WaitUntilAllToastsDisappear(); + }); + + it("3. Verify moving JSObject to new page", () => { + // Verify Move to Page + agHelper.GetNClick(jsEditor._moreActions, 0, true); + agHelper.HoverElement( + `${HomePage.portalMenuItem}:contains("Move to page")`, + ); + agHelper.GetNClick(`${HomePage.portalMenuItem}:contains("Page2")`); + + EditorNavigation.NavigateToPage("Page1", true); + PageLeftPane.switchSegment(PagePaneSegment.JS); + agHelper.AssertElementAbsence('.t--entity-name:contains("JSObject1")'); + }); + + it("4. Verify JSObject binding", () => { + EditorNavigation.NavigateToPage("Page2", true); + PageLeftPane.switchSegment(PagePaneSegment.UI); + entityExplorer.DragDropWidgetNVerify(draggableWidgets.BUTTON, 500, 100); + propPane.EnterJSContext("onClick", "{{JSObject11.myFun1();}}", true, false); + agHelper.GetNClick(locators._widgetInDeployed("buttonwidget")); + agHelper.ValidateToastMessage("Hi"); + }); + + it("5. Verify JSObject Coalescing Logs", () => { + PageList.AddNewPage("New blank page"); + jsEditor.CreateJSObject( + `// Basic example using nullish coalescing operator + const userProvidedValue = null; + const defaultValue = "Default Value"; + + const finalValue = userProvidedValue ?? defaultValue; + + console.log(finalValue);`, + { + paste: true, + completeReplace: false, + shouldCreateNewJSObj: true, + lineNumber: 5, + }, + ); + jsEditor.RenameJSObjFromExplorer("JSObject1", "Coalescing"); + agHelper.GetNClick(jsEditor.runButtonLocator); + agHelper.GetNClick(debuggerHelper.locators._logsTab); + debuggerHelper.DoesConsoleLogExist("Default Value"); + }); + + it("6. Verify JSObject Typecasting", () => { + // typecasting a string to a number + jsEditor.CreateJSObject( + `export default { + myVar1: [], + myVar2: {}, + myFun1 () { + const stringNumber = "42"; + const actualNumber = Number(stringNumber); + + console.log(typeof stringNumber); + console.log(typeof actualNumber); + console.log(actualNumber); + + const numberValue = 100; + const stringValue = String(numberValue); + + console.log(typeof numberValue); + console.log(typeof stringValue); + console.log(stringValue); + } + } + `, + { + paste: true, + completeReplace: true, + shouldCreateNewJSObj: true, + }, + ); + jsEditor.RenameJSObjFromExplorer("JSObject1", "Typecasting"); + agHelper.GetNClick(jsEditor.runButtonLocator); + agHelper.GetNClick(debuggerHelper.locators._logsTab); + debuggerHelper.DoesConsoleLogExist("string"); + debuggerHelper.DoesConsoleLogExist("number"); + debuggerHelper.DoesConsoleLogExist("42"); + + // typecasting a number to a string + jsEditor.CreateJSObject( + `export default { + myVar1: [], + myVar2: {}, + myFun1 () { + const numberValue = 100; + const stringValue = String(numberValue); + + console.log(typeof numberValue); + console.log(typeof stringValue); + console.log(stringValue); + } + } + `, + { + paste: true, + completeReplace: true, + shouldCreateNewJSObj: true, + lineNumber: 5, + }, + ); + agHelper.GetNClick(jsEditor.runButtonLocator); + agHelper.GetNClick(debuggerHelper.locators._logsTab); + debuggerHelper.DoesConsoleLogExist("number"); + debuggerHelper.DoesConsoleLogExist("string"); + debuggerHelper.DoesConsoleLogExist("100"); + }); + + it("7. Verify Promise", () => { + jsEditor.CreateJSObject( + `export default { + myVar1: [], + myVar2: {}, + myFun1 () { + // Create a promise that simulates an asynchronous operation + const myPromise = new Promise((resolve, reject) => { + const success = true; // You can change this to false to simulate a rejection + + setTimeout(() => { + if (success) { + resolve("Operation was successful!"); // Fulfill the promise + } else { + reject("Operation failed."); // Reject the promise + } + }, 2000); // Simulate a 2-second delay + }); + + // Handle the promise + myPromise + .then((message) => { + console.log(message); // Output: "Operation was successful!" if fulfilled + }) + .catch((error) => { + console.log(error); // Output: "Operation failed." if rejected + }); + } + } + `, + { + paste: true, + completeReplace: true, + shouldCreateNewJSObj: true, + }, + ); + jsEditor.RenameJSObjFromExplorer("JSObject2", "Pr"); + agHelper.GetNClick(jsEditor.runButtonLocator); + agHelper.GetNClick(debuggerHelper.locators._logsTab); + debuggerHelper.DoesConsoleLogExist("Operation was successful!"); + }); + + it("8. Verify Queries", () => { + dataSources.CreateDataSource("Postgres"); + dataSources.CreateQueryAfterDSSaved(" "); + agHelper.TypeIntoTextArea(locators._codeEditorTarget, "/"); + agHelper.GetNAssertContains(locators._hints, "Coalescing"); + agHelper.GetNAssertContains(locators._hints, "Typecasting"); + agHelper.GetNAssertContains(locators._hints, "Pr"); + agHelper.GetNAssertContains(locators._hints, "JSObject1"); + agHelper.GetNAssertContains(locators._hints, "MainContainer"); + + cy.get("@guid").then((uid) => { + dataSources.GeneratePageForDS(`Postgres ${uid}`); + }); + assertHelper.AssertNetworkStatus("@postExecute", 200); + agHelper.ClickButton("Got it"); + assertHelper.AssertNetworkStatus("@updateLayout", 200); + agHelper.Sleep(2000); + table.WaitUntilTableLoad(0, 0, "v2"); + EditorNavigation.SelectEntityByName("SelectQuery", EntityType.Query); + agHelper.GetNClick(locators._codeEditorTarget); + agHelper.AssertElementVisibility(locators._evaluatedValue); + + cy.get(`${locators._codeMirrorCode} pre`).then(($elements) => { + const text = [...$elements].map((el) => el.innerText).join(""); + agHelper.GetText(locators._evaluatedValue).then((evalText: any) => { + expect(evalText.replace(/\n/g, "")).to.eq(text); + }); + }); + }); + + it("9. Verify JSObject with identical name should not exist Bug: #35385", () => { + for (let i = 0; i < 10; i++) { + agHelper.GetNClick(locators._createNew, 0, true, 0); + } + agHelper.AssertElementAbsence(locators._toastMsg); + }); +}); diff --git a/app/client/cypress/limited-tests.txt b/app/client/cypress/limited-tests.txt index aa00835ffb0..4bf48a785dd 100644 --- a/app/client/cypress/limited-tests.txt +++ b/app/client/cypress/limited-tests.txt @@ -1,5 +1,6 @@ # To run only limited tests - give the spec names in below format: -cypress/e2e/Regression/ClientSide/Templates/Fork_Template_spec.js +cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts + # For running all specs - uncomment below: #cypress/e2e/**/**/* diff --git a/app/client/cypress/support/Pages/EntityExplorer.ts b/app/client/cypress/support/Pages/EntityExplorer.ts index aa68aa3b8c8..2a743e17f2f 100644 --- a/app/client/cypress/support/Pages/EntityExplorer.ts +++ b/app/client/cypress/support/Pages/EntityExplorer.ts @@ -72,6 +72,7 @@ export class EntityExplorer { _widgetTagSuggestedWidgets = ".widget-tag-collapsible-suggested"; _widgetTagBuildingBlocks = ".widget-tag-collapsible-building-blocks"; _widgetSeeMoreButton = "[data-testid='t--explorer-ui-entity-tag-see-more']"; + _entityName = ".t--entity-name" public ActionContextMenuByEntityName({ action = "Delete", diff --git a/app/client/cypress/support/Pages/JSEditor.ts b/app/client/cypress/support/Pages/JSEditor.ts index a6a0eba855d..b49f124ff24 100644 --- a/app/client/cypress/support/Pages/JSEditor.ts +++ b/app/client/cypress/support/Pages/JSEditor.ts @@ -89,6 +89,9 @@ export class JSEditor { "//div[@data-testid='t--query-run-confirmation-modal']//span[text()='" + text + "']"; + _addJSObj = '[data-testid="t--ide-tabs-add-button"]'; + _jsPageActions = ".entity-context-menu"; + _moreActions = '[data-testid="t--more-action-trigger"]'; //#endregion //#region constants From f02d097058c51bffc86fbd668e88a49f9a9169e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNandanAnantharamu=E2=80=9D?= <“nandan@thinkify.io”> Date: Thu, 19 Dec 2024 08:53:56 +0530 Subject: [PATCH 2/5] added tests for bugs related automation --- .../ClientSide/JSObject/JSObject_Tests_spec.ts | 17 +++++++++++++++++ .../cypress/support/Objects/CommonLocators.ts | 1 + 2 files changed, 18 insertions(+) diff --git a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts index 792183ed011..7be1df8a91a 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts @@ -289,4 +289,21 @@ describe("Validate JSObj", {}, () => { } agHelper.AssertElementAbsence(locators._toastMsg); }); + + it("10. Verify selecting JSObject does not change the page", () => { + PageList.AddNewPage("New blank page"); + PageLeftPane.switchSegment(PagePaneSegment.JS); + agHelper.GetNClick(locators._createNew); + agHelper.AssertContains("JSObject1", "exist", entityExplorer._entityName); + agHelper.GetNClick(jsEditor._addJSObj); + agHelper.AssertContains("JSObject2", "exist", entityExplorer._entityName); + EditorNavigation.NavigateToPage("Page1", true); + PageLeftPane.switchSegment(PagePaneSegment.JS); + agHelper.GetNClick(locators._editorTab); + PageList.VerifyIsCurrentPage("Page1"); + EditorNavigation.NavigateToPage("Page2", true); + agHelper.AssertContains("JSObject1", "exist", entityExplorer._entityName); + agHelper.GetNClick(locators._editorTab); + PageList.VerifyIsCurrentPage("Page2"); + }); }); diff --git a/app/client/cypress/support/Objects/CommonLocators.ts b/app/client/cypress/support/Objects/CommonLocators.ts index 07006699a06..65d25158a31 100644 --- a/app/client/cypress/support/Objects/CommonLocators.ts +++ b/app/client/cypress/support/Objects/CommonLocators.ts @@ -346,4 +346,5 @@ export class CommonLocators { _showBoundary = ".show-boundary"; _entityItem = "[data-testid='t--entity-item-Api1']"; _rowData = "[data-colindex='0'][data-rowindex='0']"; + _editorTab = ".editor-tab"; } From efc61ae9e522ee232b9f7e18b346e1aeeb71138e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNandanAnantharamu=E2=80=9D?= <“nandan@thinkify.io”> Date: Thu, 19 Dec 2024 22:40:48 +0530 Subject: [PATCH 3/5] test updated --- .../Regression/ClientSide/JSObject/JSObject_Tests_spec.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts index 7be1df8a91a..5e935153915 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts @@ -282,15 +282,16 @@ describe("Validate JSObj", {}, () => { }); }); }); - - it("9. Verify JSObject with identical name should not exist Bug: #35385", () => { + //Bug: https://github.com/appsmithorg/appsmith/issues/35385 + it.skip("9. Verify JSObject with identical name should not exist Bug: #35385", () => { for (let i = 0; i < 10; i++) { agHelper.GetNClick(locators._createNew, 0, true, 0); } agHelper.AssertElementAbsence(locators._toastMsg); }); - it("10. Verify selecting JSObject does not change the page", () => { + //Bug: https://github.com/appsmithorg/appsmith/issues/38216 + it.skip("10. Verify selecting JSObject does not change the page", () => { PageList.AddNewPage("New blank page"); PageLeftPane.switchSegment(PagePaneSegment.JS); agHelper.GetNClick(locators._createNew); From 3593a14d74f432c414bc284c293477f7efa17578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNandanAnantharamu=E2=80=9D?= <“nandan@thinkify.io”> Date: Fri, 20 Dec 2024 15:15:05 +0530 Subject: [PATCH 4/5] test: added test for jsobjects with Fork app scenario --- .../JSObject/JSObject_ForkApp_spec.ts | 26 + .../cypress/fixtures/jsObjectTesting.json | 32736 ++++++++++++++++ app/client/cypress/support/Pages/HomePage.ts | 3 +- 3 files changed, 32763 insertions(+), 2 deletions(-) create mode 100644 app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts create mode 100644 app/client/cypress/fixtures/jsObjectTesting.json diff --git a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts new file mode 100644 index 00000000000..6d9a933ab96 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts @@ -0,0 +1,26 @@ +import { + agHelper, + assertHelper, + homePage, + locators, +} from "../../../../support/Objects/ObjectsCore"; +import HomePage from "../../../../locators/HomePage"; + +describe("Fork application", {}, function () { + it("1. Fork app and verify", () => { + homePage.ImportApp("jsObjectTesting.json"); + agHelper.GetNClick(homePage._applicationName); + agHelper.GetNClickByContains; + agHelper.GetNClickByContains( + HomePage.applicationEditMenu, + "Fork application", + ); + agHelper.GetNClick(locators._forkAppToWorkspaceBtn); + assertHelper.AssertNetworkStatus("@postForkAppWorkspace", 200); + agHelper.WaitUntilEleDisappear(homePage._forkModal); + homePage.NavigateToHome(); + agHelper.AssertElementExist( + `${homePage._applicationCard}:contains('JS object testing upto 1.5 MB (1)')`, + ); + }); +}); diff --git a/app/client/cypress/fixtures/jsObjectTesting.json b/app/client/cypress/fixtures/jsObjectTesting.json new file mode 100644 index 00000000000..46fda77fa27 --- /dev/null +++ b/app/client/cypress/fixtures/jsObjectTesting.json @@ -0,0 +1,32736 @@ +{ + "artifactJsonType": "APPLICATION", + "clientSchemaVersion": 1.0, + "serverSchemaVersion": 11.0, + "exportedApplication": { + "name": "JS object testing upto 1.5 MB", + "isPublic": true, + "pages": [{ "id": "Page1", "isDefault": true }], + "publishedPages": [{ "id": "Page1", "isDefault": true }], + "viewMode": false, + "appIsExample": false, + "unreadCommentThreads": 0.0, + "unpublishedApplicationDetail": { + "appPositioning": { "type": "FIXED" }, + "navigationSetting": {}, + "themeSetting": { "sizing": 1.0, "density": 1.0, "appMaxWidth": "LARGE" } + }, + "publishedApplicationDetail": { + "appPositioning": { "type": "FIXED" }, + "navigationSetting": {}, + "themeSetting": { "sizing": 1.0, "density": 1.0, "appMaxWidth": "LARGE" } + }, + "color": "#D9E7FF", + "icon": "bag", + "slug": "js-object-testing-upto-1-5-mb", + "unpublishedCustomJSLibs": [], + "publishedCustomJSLibs": [], + "evaluationVersion": 2.0, + "applicationVersion": 2.0, + "collapseInvisibleWidgets": true, + "isManualUpdate": false, + "deleted": false + }, + "datasourceList": [], + "customJSLibList": [], + "pageList": [ + { + "unpublishedPage": { + "name": "Page1", + "slug": "page1", + "layouts": [ + { + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 5760.0, + "containerStyle": "none", + "snapRows": 124.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 90.0, + "minHeight": 1292.0, + "dynamicTriggerPathList": [], + "parentColumnSpace": 1.0, + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [ + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 0.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194414895e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 31.0, + "widgetName": "Table1", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 28.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 38.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "k6l42pmx3j", + "canFreezeColumn": true, + "rightColumn": 61.0, + "textSize": "0.875rem", + "widgetId": "rm6nhd05ld", + "minWidth": 450.0, + "tableData": "{{JS1.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 3.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 4.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 29.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194675239e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 57.0, + "widgetName": "Table2", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 57.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "k6l42pmx3j", + "canFreezeColumn": true, + "rightColumn": 61.0, + "textSize": "0.875rem", + "widgetId": "jxtdwg3l2w", + "minWidth": 450.0, + "tableData": "{{JS2.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 29.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 58.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194742524e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 86.0, + "widgetName": "Table3", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 86.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "9spcsg3o4l", + "canFreezeColumn": true, + "rightColumn": 61.0, + "textSize": "0.875rem", + "widgetId": "640wesduqf", + "minWidth": 450.0, + "tableData": "{{JS3.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 58.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 146.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194752343e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 86.0, + "widgetName": "Table3Copy2", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 174.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "9spcsg3o4l", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "hbnq15kivn", + "minWidth": 450.0, + "tableData": "{{JS6.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 58.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 117.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194752344e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 86.0, + "widgetName": "Table3Copy1", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 145.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "9spcsg3o4l", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "fqnctn2d3x", + "minWidth": 450.0, + "tableData": "{{JS5.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 58.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 88.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194752345e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 86.0, + "widgetName": "Table3Copy", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 116.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table3Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "9spcsg3o4l", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "789nnphylj", + "minWidth": 450.0, + "tableData": "{{JS4.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 58.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 175.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194994234e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 203.0, + "widgetName": "Table4", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 203.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "7fjha65f6v", + "canFreezeColumn": true, + "rightColumn": 63.0, + "textSize": "0.875rem", + "widgetId": "n1ive2s7zh", + "minWidth": 450.0, + "tableData": "{{JS7.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 175.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 292.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 2.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194994235e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 203.0, + "widgetName": "Table4Copy3", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 320.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy3.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "7fjha65f6v", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "h4jgy52qaz", + "minWidth": 450.0, + "tableData": "{{JS11.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 175.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 263.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 2.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732195019182e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 203.0, + "widgetName": "Table4Copy2", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 291.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy2.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "7fjha65f6v", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "sczugwmnz4", + "minWidth": 450.0, + "tableData": "{{JS10.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 175.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 233.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 2.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194994236e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 203.0, + "widgetName": "Table4Copy1", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 261.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "7fjha65f6v", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "dxhvtgvj80", + "minWidth": 450.0, + "tableData": "{{JS9.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 175.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 204.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 2.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732194994236e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 203.0, + "widgetName": "Table4Copy", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 232.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table4Copy.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "7fjha65f6v", + "canFreezeColumn": true, + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "x8bojzvgws", + "minWidth": 450.0, + "tableData": "{{JS8.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 175.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "needsErrorInfo": false, + "boxShadow": "none", + "mobileBottomRow": 328.0, + "widgetName": "Select1", + "isFilterable": true, + "dynamicPropertyPathList": [{ "key": "sourceData" }], + "labelText": "Label", + "topRow": 321.0, + "bottomRow": 328.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "mobileRightColumn": 20.0, + "defaultOptionValue": "{{\n {\n label: Select1.options[0].label,\n value: Select1.options[0].value\n }\n }}", + "animateLoading": true, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [ + { "key": "sourceData" }, + { "key": "defaultOptionValue" }, + { "key": "accentColor" }, + { "key": "borderRadius" } + ], + "leftColumn": 0.0, + "labelPosition": "Top", + "placeholderText": "Select option", + "isDisabled": false, + "sourceData": "{{a1.data.results.map( (obj) =>{ return {'label': obj.email, 'value': obj.email } })}}", + "key": "9pulg3qhhu", + "labelTextSize": "0.875rem", + "isRequired": false, + "rightColumn": 20.0, + "dynamicHeight": "FIXED", + "widgetId": "5elb3rmnt3", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "optionValue": "value", + "minWidth": 450.0, + "isVisible": true, + "version": 1.0, + "parentId": "0", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 321.0, + "optionLabel": "label", + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0.0, + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "needsErrorInfo": false, + "boxShadow": "none", + "mobileBottomRow": 345.0, + "widgetName": "Select2Copy", + "isFilterable": true, + "dynamicPropertyPathList": [{ "key": "sourceData" }], + "labelText": "Label", + "topRow": 338.0, + "bottomRow": 345.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "mobileRightColumn": 41.0, + "defaultOptionValue": "{{ ((options, serverSideFiltering) => ( \n {\n label: Select1Copy1Copy1.options[0].label,\n value: Select1Copy1Copy1.options[0].value\n }\n ))(Select2Copy.options, Select2Copy.serverSideFiltering) }}", + "animateLoading": true, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "leftColumn": 62.0, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "sourceData" }, + { "key": "defaultOptionValue" } + ], + "labelPosition": "Top", + "placeholderText": "Select option", + "isDisabled": false, + "sourceData": "{{a9.data.results.map( (obj) =>{ return {'label': obj.email, 'value': obj.name } })}}", + "key": "tai15kqliq", + "labelTextSize": "0.875rem", + "isRequired": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "qnvvbxp7nk", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "optionValue": "value", + "minWidth": 450.0, + "isVisible": true, + "version": 1.0, + "parentId": "0", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 338.0, + "optionLabel": "label", + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 21.0, + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 333.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { + "key": "primaryColumns.author_alternative_name.computedValue" + }, + { "key": "primaryColumns.author_key.computedValue" }, + { "key": "primaryColumns.author_name.computedValue" }, + { "key": "primaryColumns.contributor.computedValue" }, + { "key": "primaryColumns.cover_edition_key.computedValue" }, + { "key": "primaryColumns.cover_i.computedValue" }, + { "key": "primaryColumns.ddc.computedValue" }, + { "key": "primaryColumns.ebook_access.computedValue" }, + { "key": "primaryColumns.ebook_count_i.computedValue" }, + { "key": "primaryColumns.edition_count.computedValue" }, + { "key": "primaryColumns.edition_key.computedValue" }, + { + "key": "primaryColumns.first_publish_year.computedValue" + }, + { "key": "primaryColumns.first_sentence.computedValue" }, + { "key": "primaryColumns.format.computedValue" }, + { "key": "primaryColumns.has_fulltext.computedValue" }, + { "key": "primaryColumns.ia.computedValue" }, + { "key": "primaryColumns.ia_collection.computedValue" }, + { "key": "primaryColumns.ia_collection_s.computedValue" }, + { "key": "primaryColumns.isbn.computedValue" }, + { "key": "primaryColumns.key.computedValue" }, + { "key": "primaryColumns.language.computedValue" }, + { "key": "primaryColumns.last_modified_i.computedValue" }, + { "key": "primaryColumns.lcc.computedValue" }, + { "key": "primaryColumns.lccn.computedValue" }, + { "key": "primaryColumns.lending_edition_s.computedValue" }, + { + "key": "primaryColumns.lending_identifier_s.computedValue" + }, + { + "key": "primaryColumns.number_of_pages_median.computedValue" + }, + { "key": "primaryColumns.oclc.computedValue" }, + { "key": "primaryColumns.osp_count.computedValue" }, + { "key": "primaryColumns.printdisabled_s.computedValue" }, + { "key": "primaryColumns.public_scan_b.computedValue" }, + { "key": "primaryColumns.publish_date.computedValue" }, + { "key": "primaryColumns.publish_place.computedValue" }, + { "key": "primaryColumns.publish_year.computedValue" }, + { "key": "primaryColumns.publisher.computedValue" }, + { "key": "primaryColumns.seed.computedValue" }, + { "key": "primaryColumns.title.computedValue" }, + { "key": "primaryColumns.title_sort.computedValue" }, + { "key": "primaryColumns.title_suggest.computedValue" }, + { "key": "primaryColumns.type.computedValue" }, + { "key": "primaryColumns.id_goodreads.computedValue" }, + { "key": "primaryColumns.id_librarything.computedValue" }, + { "key": "primaryColumns.id_dnb.computedValue" }, + { "key": "primaryColumns.id_doi.computedValue" }, + { "key": "primaryColumns.id_amazon.computedValue" }, + { + "key": "primaryColumns.xn__id_depsito_legal_bvb.computedValue" + }, + { "key": "primaryColumns.id_alibris_id.computedValue" }, + { "key": "primaryColumns.id_google.computedValue" }, + { "key": "primaryColumns.id_paperback_swap.computedValue" }, + { "key": "primaryColumns.id_wikidata.computedValue" }, + { + "key": "primaryColumns.id_better_world_books.computedValue" + }, + { "key": "primaryColumns.id_overdrive.computedValue" }, + { + "key": "primaryColumns.id_canadian_national_library_archive.computedValue" + }, + { "key": "primaryColumns.subject.computedValue" }, + { "key": "primaryColumns.place.computedValue" }, + { "key": "primaryColumns.time.computedValue" }, + { "key": "primaryColumns.person.computedValue" }, + { "key": "primaryColumns.ia_loaded_id.computedValue" }, + { "key": "primaryColumns.ia_box_id.computedValue" }, + { "key": "primaryColumns.ratings_average.computedValue" }, + { "key": "primaryColumns.ratings_sortable.computedValue" }, + { "key": "primaryColumns.ratings_count.computedValue" }, + { "key": "primaryColumns.ratings_count_1.computedValue" }, + { "key": "primaryColumns.ratings_count_2.computedValue" }, + { "key": "primaryColumns.ratings_count_3.computedValue" }, + { "key": "primaryColumns.ratings_count_4.computedValue" }, + { "key": "primaryColumns.ratings_count_5.computedValue" }, + { "key": "primaryColumns.readinglog_count.computedValue" }, + { + "key": "primaryColumns.want_to_read_count.computedValue" + }, + { + "key": "primaryColumns.currently_reading_count.computedValue" + }, + { + "key": "primaryColumns.already_read_count.computedValue" + }, + { "key": "primaryColumns.publisher_facet.computedValue" }, + { "key": "primaryColumns.person_key.computedValue" }, + { "key": "primaryColumns.time_facet.computedValue" }, + { "key": "primaryColumns.place_key.computedValue" }, + { "key": "primaryColumns.person_facet.computedValue" }, + { "key": "primaryColumns.subject_facet.computedValue" }, + { "key": "primaryColumns._version_.computedValue" }, + { "key": "primaryColumns.place_facet.computedValue" }, + { "key": "primaryColumns.lcc_sort.computedValue" }, + { "key": "primaryColumns.author_facet.computedValue" }, + { "key": "primaryColumns.subject_key.computedValue" }, + { "key": "primaryColumns.ddc_sort.computedValue" }, + { "key": "primaryColumns.time_key.computedValue" }, + { + "key": "primaryColumns.id_amazon_co_uk_asin.computedValue" + }, + { "key": "primaryColumns.id_amazon_de_asin.computedValue" }, + { "key": "primaryColumns.id_amazon_ca_asin.computedValue" }, + { "key": "primaryColumns.id_amazon_it_asin.computedValue" }, + { "key": "primaryColumns.id_bcid.computedValue" }, + { "key": "primaryColumns.id_nla.computedValue" }, + { + "key": "primaryColumns.id_british_national_bibliography.computedValue" + }, + { "key": "primaryColumns.id_scribd.computedValue" }, + { "key": "primaryColumns.id_hathi_trust.computedValue" }, + { + "key": "primaryColumns.id_british_library.computedValue" + }, + { + "key": "primaryColumns.xn__id_bibliothque_nationale_de_france_l8c.computedValue" + }, + { "key": "primaryColumns.id_libris.computedValue" }, + { "key": "primaryColumns.subtitle.computedValue" } + ], + "leftColumn": 0.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732201390863e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 361.0, + "widgetName": "Table5", + "defaultPageSize": 0.0, + "columnOrder": [ + "author_alternative_name", + "author_key", + "author_name", + "contributor", + "cover_edition_key", + "cover_i", + "ddc", + "ebook_access", + "ebook_count_i", + "edition_count", + "edition_key", + "first_publish_year", + "first_sentence", + "format", + "has_fulltext", + "ia", + "ia_collection", + "ia_collection_s", + "isbn", + "key", + "language", + "last_modified_i", + "lcc", + "lccn", + "lending_edition_s", + "lending_identifier_s", + "number_of_pages_median", + "oclc", + "osp_count", + "printdisabled_s", + "public_scan_b", + "publish_date", + "publish_place", + "publish_year", + "publisher", + "seed", + "title", + "title_sort", + "title_suggest", + "type", + "id_goodreads", + "id_librarything", + "id_dnb", + "id_doi", + "id_amazon", + "xn__id_depsito_legal_bvb", + "id_alibris_id", + "id_google", + "id_paperback_swap", + "id_wikidata", + "id_better_world_books", + "id_overdrive", + "id_canadian_national_library_archive", + "subject", + "place", + "time", + "person", + "ia_loaded_id", + "ia_box_id", + "ratings_average", + "ratings_sortable", + "ratings_count", + "ratings_count_1", + "ratings_count_2", + "ratings_count_3", + "ratings_count_4", + "ratings_count_5", + "readinglog_count", + "want_to_read_count", + "currently_reading_count", + "already_read_count", + "publisher_facet", + "person_key", + "time_facet", + "place_key", + "person_facet", + "subject_facet", + "_version_", + "place_facet", + "lcc_sort", + "author_facet", + "subject_key", + "ddc_sort", + "time_key", + "id_amazon_co_uk_asin", + "id_amazon_de_asin", + "id_amazon_ca_asin", + "id_amazon_it_asin", + "id_bcid", + "id_nla", + "id_british_national_bibliography", + "id_scribd", + "id_hathi_trust", + "id_british_library", + "xn__id_bibliothque_nationale_de_france_l8c", + "id_libris", + "subtitle" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 361.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 37.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "author_alternative_name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "author_alternative_name", + "id": "author_alternative_name", + "alias": "author_alternative_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "author_alternative_name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"author_alternative_name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "author_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "author_key", + "id": "author_key", + "alias": "author_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "author_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"author_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "author_name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "author_name", + "id": "author_name", + "alias": "author_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "author_name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"author_name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "contributor": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "contributor", + "id": "contributor", + "alias": "contributor", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "contributor", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"contributor\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "cover_edition_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "cover_edition_key", + "id": "cover_edition_key", + "alias": "cover_edition_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "cover_edition_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"cover_edition_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "cover_i": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "cover_i", + "id": "cover_i", + "alias": "cover_i", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "cover_i", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"cover_i\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ddc": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "ddc", + "id": "ddc", + "alias": "ddc", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ddc", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ddc\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ebook_access": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "ebook_access", + "id": "ebook_access", + "alias": "ebook_access", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ebook_access", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ebook_access\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ebook_count_i": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "ebook_count_i", + "id": "ebook_count_i", + "alias": "ebook_count_i", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ebook_count_i", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ebook_count_i\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "edition_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "edition_count", + "id": "edition_count", + "alias": "edition_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "edition_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"edition_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "edition_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "edition_key", + "id": "edition_key", + "alias": "edition_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "edition_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"edition_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "first_publish_year": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "first_publish_year", + "id": "first_publish_year", + "alias": "first_publish_year", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "first_publish_year", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"first_publish_year\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "first_sentence": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "first_sentence", + "id": "first_sentence", + "alias": "first_sentence", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "first_sentence", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"first_sentence\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "format": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "format", + "id": "format", + "alias": "format", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "format", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"format\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "has_fulltext": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "has_fulltext", + "id": "has_fulltext", + "alias": "has_fulltext", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "checkbox", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "has_fulltext", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"has_fulltext\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ia": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "ia", + "id": "ia", + "alias": "ia", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ia", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ia\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ia_collection": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "ia_collection", + "id": "ia_collection", + "alias": "ia_collection", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ia_collection", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ia_collection\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ia_collection_s": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "ia_collection_s", + "id": "ia_collection_s", + "alias": "ia_collection_s", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ia_collection_s", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ia_collection_s\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "isbn": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "isbn", + "id": "isbn", + "alias": "isbn", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "isbn", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"isbn\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "key", + "id": "key", + "alias": "key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "language": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "language", + "id": "language", + "alias": "language", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "language", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"language\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "last_modified_i": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "last_modified_i", + "id": "last_modified_i", + "alias": "last_modified_i", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "last_modified_i", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"last_modified_i\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "lcc": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "lcc", + "id": "lcc", + "alias": "lcc", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "lcc", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"lcc\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "lccn": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "lccn", + "id": "lccn", + "alias": "lccn", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "lccn", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"lccn\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "lending_edition_s": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "lending_edition_s", + "id": "lending_edition_s", + "alias": "lending_edition_s", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "lending_edition_s", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"lending_edition_s\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "lending_identifier_s": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "lending_identifier_s", + "id": "lending_identifier_s", + "alias": "lending_identifier_s", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "lending_identifier_s", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"lending_identifier_s\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "number_of_pages_median": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "number_of_pages_median", + "id": "number_of_pages_median", + "alias": "number_of_pages_median", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "number_of_pages_median", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"number_of_pages_median\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "oclc": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "oclc", + "id": "oclc", + "alias": "oclc", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "oclc", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"oclc\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "osp_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "osp_count", + "id": "osp_count", + "alias": "osp_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "osp_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"osp_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "printdisabled_s": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "printdisabled_s", + "id": "printdisabled_s", + "alias": "printdisabled_s", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "printdisabled_s", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"printdisabled_s\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "public_scan_b": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "public_scan_b", + "id": "public_scan_b", + "alias": "public_scan_b", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "checkbox", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "public_scan_b", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"public_scan_b\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "publish_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "publish_date", + "id": "publish_date", + "alias": "publish_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "publish_date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"publish_date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "publish_place": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "publish_place", + "id": "publish_place", + "alias": "publish_place", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "publish_place", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"publish_place\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "publish_year": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "publish_year", + "id": "publish_year", + "alias": "publish_year", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "publish_year", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"publish_year\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "publisher": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "publisher", + "id": "publisher", + "alias": "publisher", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "publisher", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"publisher\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "seed": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "seed", + "id": "seed", + "alias": "seed", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "seed", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"seed\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "title", + "id": "title", + "alias": "title", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "title", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"title\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "title_sort": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 37.0, + "width": 150.0, + "originalId": "title_sort", + "id": "title_sort", + "alias": "title_sort", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "title_sort", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"title_sort\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "title_suggest": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 38.0, + "width": 150.0, + "originalId": "title_suggest", + "id": "title_suggest", + "alias": "title_suggest", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "title_suggest", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"title_suggest\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "type": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 39.0, + "width": 150.0, + "originalId": "type", + "id": "type", + "alias": "type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "type", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"type\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_goodreads": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 40.0, + "width": 150.0, + "originalId": "id_goodreads", + "id": "id_goodreads", + "alias": "id_goodreads", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_goodreads", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_goodreads\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_librarything": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 41.0, + "width": 150.0, + "originalId": "id_librarything", + "id": "id_librarything", + "alias": "id_librarything", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_librarything", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_librarything\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_dnb": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 42.0, + "width": 150.0, + "originalId": "id_dnb", + "id": "id_dnb", + "alias": "id_dnb", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_dnb", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_dnb\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_doi": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 43.0, + "width": 150.0, + "originalId": "id_doi", + "id": "id_doi", + "alias": "id_doi", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_doi", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_doi\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_amazon": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 44.0, + "width": 150.0, + "originalId": "id_amazon", + "id": "id_amazon", + "alias": "id_amazon", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_amazon", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_amazon\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "xn__id_depsito_legal_bvb": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 45.0, + "width": 150.0, + "originalId": "id_depósito_legal", + "id": "xn__id_depsito_legal_bvb", + "alias": "id_depósito_legal", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_depósito_legal", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_depósito_legal\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_alibris_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 46.0, + "width": 150.0, + "originalId": "id_alibris_id", + "id": "id_alibris_id", + "alias": "id_alibris_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_alibris_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_alibris_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_google": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 47.0, + "width": 150.0, + "originalId": "id_google", + "id": "id_google", + "alias": "id_google", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_google", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_google\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_paperback_swap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 48.0, + "width": 150.0, + "originalId": "id_paperback_swap", + "id": "id_paperback_swap", + "alias": "id_paperback_swap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_paperback_swap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_paperback_swap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_wikidata": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 49.0, + "width": 150.0, + "originalId": "id_wikidata", + "id": "id_wikidata", + "alias": "id_wikidata", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_wikidata", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_wikidata\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_better_world_books": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 50.0, + "width": 150.0, + "originalId": "id_better_world_books", + "id": "id_better_world_books", + "alias": "id_better_world_books", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_better_world_books", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_better_world_books\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_overdrive": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 51.0, + "width": 150.0, + "originalId": "id_overdrive", + "id": "id_overdrive", + "alias": "id_overdrive", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_overdrive", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_overdrive\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_canadian_national_library_archive": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 52.0, + "width": 150.0, + "originalId": "id_canadian_national_library_archive", + "id": "id_canadian_national_library_archive", + "alias": "id_canadian_national_library_archive", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_canadian_national_library_archive", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_canadian_national_library_archive\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "subject": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 53.0, + "width": 150.0, + "originalId": "subject", + "id": "subject", + "alias": "subject", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "subject", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"subject\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "place": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 54.0, + "width": 150.0, + "originalId": "place", + "id": "place", + "alias": "place", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "place", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"place\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "time": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 55.0, + "width": 150.0, + "originalId": "time", + "id": "time", + "alias": "time", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "time", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"time\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "person": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 56.0, + "width": 150.0, + "originalId": "person", + "id": "person", + "alias": "person", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "person", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"person\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ia_loaded_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 57.0, + "width": 150.0, + "originalId": "ia_loaded_id", + "id": "ia_loaded_id", + "alias": "ia_loaded_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ia_loaded_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ia_loaded_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ia_box_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 58.0, + "width": 150.0, + "originalId": "ia_box_id", + "id": "ia_box_id", + "alias": "ia_box_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ia_box_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ia_box_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_average": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 59.0, + "width": 150.0, + "originalId": "ratings_average", + "id": "ratings_average", + "alias": "ratings_average", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_average", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_average\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_sortable": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 60.0, + "width": 150.0, + "originalId": "ratings_sortable", + "id": "ratings_sortable", + "alias": "ratings_sortable", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_sortable", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_sortable\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 61.0, + "width": 150.0, + "originalId": "ratings_count", + "id": "ratings_count", + "alias": "ratings_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_count_1": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 62.0, + "width": 150.0, + "originalId": "ratings_count_1", + "id": "ratings_count_1", + "alias": "ratings_count_1", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_count_1", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_count_1\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_count_2": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 63.0, + "width": 150.0, + "originalId": "ratings_count_2", + "id": "ratings_count_2", + "alias": "ratings_count_2", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_count_2", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_count_2\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_count_3": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 64.0, + "width": 150.0, + "originalId": "ratings_count_3", + "id": "ratings_count_3", + "alias": "ratings_count_3", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_count_3", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_count_3\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_count_4": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 65.0, + "width": 150.0, + "originalId": "ratings_count_4", + "id": "ratings_count_4", + "alias": "ratings_count_4", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_count_4", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_count_4\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ratings_count_5": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 66.0, + "width": 150.0, + "originalId": "ratings_count_5", + "id": "ratings_count_5", + "alias": "ratings_count_5", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ratings_count_5", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ratings_count_5\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "readinglog_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 67.0, + "width": 150.0, + "originalId": "readinglog_count", + "id": "readinglog_count", + "alias": "readinglog_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "readinglog_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"readinglog_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "want_to_read_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 68.0, + "width": 150.0, + "originalId": "want_to_read_count", + "id": "want_to_read_count", + "alias": "want_to_read_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "want_to_read_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"want_to_read_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "currently_reading_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 69.0, + "width": 150.0, + "originalId": "currently_reading_count", + "id": "currently_reading_count", + "alias": "currently_reading_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "currently_reading_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"currently_reading_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "already_read_count": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 70.0, + "width": 150.0, + "originalId": "already_read_count", + "id": "already_read_count", + "alias": "already_read_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "already_read_count", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"already_read_count\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "publisher_facet": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 71.0, + "width": 150.0, + "originalId": "publisher_facet", + "id": "publisher_facet", + "alias": "publisher_facet", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "publisher_facet", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"publisher_facet\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "person_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 72.0, + "width": 150.0, + "originalId": "person_key", + "id": "person_key", + "alias": "person_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "person_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"person_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "time_facet": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 73.0, + "width": 150.0, + "originalId": "time_facet", + "id": "time_facet", + "alias": "time_facet", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "time_facet", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"time_facet\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "place_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 74.0, + "width": 150.0, + "originalId": "place_key", + "id": "place_key", + "alias": "place_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "place_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"place_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "person_facet": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 75.0, + "width": 150.0, + "originalId": "person_facet", + "id": "person_facet", + "alias": "person_facet", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "person_facet", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"person_facet\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "subject_facet": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 76.0, + "width": 150.0, + "originalId": "subject_facet", + "id": "subject_facet", + "alias": "subject_facet", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "subject_facet", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"subject_facet\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "_version_": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 77.0, + "width": 150.0, + "originalId": "_version_", + "id": "_version_", + "alias": "_version_", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "_version_", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"_version_\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "place_facet": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 78.0, + "width": 150.0, + "originalId": "place_facet", + "id": "place_facet", + "alias": "place_facet", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "place_facet", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"place_facet\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "lcc_sort": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 79.0, + "width": 150.0, + "originalId": "lcc_sort", + "id": "lcc_sort", + "alias": "lcc_sort", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "lcc_sort", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"lcc_sort\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "author_facet": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 80.0, + "width": 150.0, + "originalId": "author_facet", + "id": "author_facet", + "alias": "author_facet", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "author_facet", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"author_facet\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "subject_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 81.0, + "width": 150.0, + "originalId": "subject_key", + "id": "subject_key", + "alias": "subject_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "subject_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"subject_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ddc_sort": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 82.0, + "width": 150.0, + "originalId": "ddc_sort", + "id": "ddc_sort", + "alias": "ddc_sort", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ddc_sort", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ddc_sort\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "time_key": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 83.0, + "width": 150.0, + "originalId": "time_key", + "id": "time_key", + "alias": "time_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "time_key", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"time_key\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_amazon_co_uk_asin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 84.0, + "width": 150.0, + "originalId": "id_amazon_co_uk_asin", + "id": "id_amazon_co_uk_asin", + "alias": "id_amazon_co_uk_asin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_amazon_co_uk_asin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_amazon_co_uk_asin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_amazon_de_asin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 85.0, + "width": 150.0, + "originalId": "id_amazon_de_asin", + "id": "id_amazon_de_asin", + "alias": "id_amazon_de_asin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_amazon_de_asin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_amazon_de_asin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_amazon_ca_asin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 86.0, + "width": 150.0, + "originalId": "id_amazon_ca_asin", + "id": "id_amazon_ca_asin", + "alias": "id_amazon_ca_asin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_amazon_ca_asin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_amazon_ca_asin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_amazon_it_asin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 87.0, + "width": 150.0, + "originalId": "id_amazon_it_asin", + "id": "id_amazon_it_asin", + "alias": "id_amazon_it_asin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_amazon_it_asin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_amazon_it_asin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_bcid": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 88.0, + "width": 150.0, + "originalId": "id_bcid", + "id": "id_bcid", + "alias": "id_bcid", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_bcid", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_bcid\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_nla": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 89.0, + "width": 150.0, + "originalId": "id_nla", + "id": "id_nla", + "alias": "id_nla", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_nla", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_nla\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_british_national_bibliography": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 90.0, + "width": 150.0, + "originalId": "id_british_national_bibliography", + "id": "id_british_national_bibliography", + "alias": "id_british_national_bibliography", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_british_national_bibliography", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_british_national_bibliography\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_scribd": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 91.0, + "width": 150.0, + "originalId": "id_scribd", + "id": "id_scribd", + "alias": "id_scribd", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_scribd", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_scribd\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_hathi_trust": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 92.0, + "width": 150.0, + "originalId": "id_hathi_trust", + "id": "id_hathi_trust", + "alias": "id_hathi_trust", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_hathi_trust", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_hathi_trust\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_british_library": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 93.0, + "width": 150.0, + "originalId": "id_british_library", + "id": "id_british_library", + "alias": "id_british_library", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_british_library", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_british_library\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "xn__id_bibliothque_nationale_de_france_l8c": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 94.0, + "width": 150.0, + "originalId": "id_bibliothèque_nationale_de_france", + "id": "xn__id_bibliothque_nationale_de_france_l8c", + "alias": "id_bibliothèque_nationale_de_france", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_bibliothèque_nationale_de_france", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_bibliothèque_nationale_de_france\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id_libris": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 95.0, + "width": 150.0, + "originalId": "id_libris", + "id": "id_libris", + "alias": "id_libris", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id_libris", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id_libris\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "subtitle": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 96.0, + "width": 150.0, + "originalId": "subtitle", + "id": "subtitle", + "alias": "subtitle", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "subtitle", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table5.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"subtitle\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "2s80429m88", + "canFreezeColumn": true, + "rightColumn": 34.0, + "textSize": "0.875rem", + "widgetId": "wq68xcjt3c", + "minWidth": 450.0, + "tableData": "{{a2.data.docs}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 333.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 3.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 363.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.id.computedValue" }, + { "key": "primaryColumns.first_name.computedValue" }, + { "key": "primaryColumns.last_name.computedValue" }, + { "key": "primaryColumns.email.computedValue" }, + { "key": "primaryColumns.gender.computedValue" }, + { "key": "primaryColumns.ip_address.computedValue" } + ], + "leftColumn": 0.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732201404238e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 391.0, + "widgetName": "Table6", + "defaultPageSize": 0.0, + "columnOrder": [ + "id", + "first_name", + "last_name", + "email", + "gender", + "ip_address" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 391.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 34.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "id", + "id": "id", + "alias": "id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table6.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "first_name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "first_name", + "id": "first_name", + "alias": "first_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "first_name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table6.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"first_name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "last_name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "last_name", + "id": "last_name", + "alias": "last_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "last_name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table6.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"last_name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "email", + "id": "email", + "alias": "email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table6.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "gender", + "id": "gender", + "alias": "gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table6.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "ip_address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "ip_address", + "id": "ip_address", + "alias": "ip_address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "ip_address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table6.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"ip_address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "2s80429m88", + "canFreezeColumn": true, + "rightColumn": 34.0, + "textSize": "0.875rem", + "widgetId": "t2by9hqepg", + "minWidth": 450.0, + "tableData": "{{a3.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 363.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 394.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.gender.computedValue" }, + { "key": "primaryColumns.name.computedValue" }, + { "key": "primaryColumns.location.computedValue" }, + { "key": "primaryColumns.email.computedValue" }, + { "key": "primaryColumns.login.computedValue" }, + { "key": "primaryColumns.dob.computedValue" }, + { "key": "primaryColumns.registered.computedValue" }, + { "key": "primaryColumns.phone.computedValue" }, + { "key": "primaryColumns.cell.computedValue" }, + { "key": "primaryColumns.id.computedValue" }, + { "key": "primaryColumns.picture.computedValue" }, + { "key": "primaryColumns.nat.computedValue" } + ], + "leftColumn": 0.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732201411614e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 422.0, + "widgetName": "Table7", + "defaultPageSize": 0.0, + "columnOrder": [ + "gender", + "name", + "location", + "email", + "login", + "dob", + "registered", + "phone", + "cell", + "id", + "picture", + "nat" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 422.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 34.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "gender", + "id": "gender", + "alias": "gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "name", + "id": "name", + "alias": "name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "location": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "location", + "id": "location", + "alias": "location", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "location", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"location\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "email", + "id": "email", + "alias": "email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "login": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "login", + "id": "login", + "alias": "login", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "login", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"login\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "dob": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "dob", + "id": "dob", + "alias": "dob", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "dob", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"dob\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "registered": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "registered", + "id": "registered", + "alias": "registered", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "registered", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"registered\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "phone", + "id": "phone", + "alias": "phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "cell": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "cell", + "id": "cell", + "alias": "cell", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "cell", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"cell\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "id", + "id": "id", + "alias": "id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "picture": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "picture", + "id": "picture", + "alias": "picture", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "picture", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"picture\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "nat": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "nat", + "id": "nat", + "alias": "nat", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "nat", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table7.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"nat\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "2s80429m88", + "canFreezeColumn": true, + "rightColumn": 34.0, + "textSize": "0.875rem", + "widgetId": "96mtqin7tn", + "minWidth": 450.0, + "tableData": "{{a4.data.results}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 394.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 424.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732202522896e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 452.0, + "widgetName": "Table8", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 452.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table8.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "0hads8hrdn", + "canFreezeColumn": true, + "rightColumn": 35.0, + "textSize": "0.875rem", + "widgetId": "2qdl2lre4l", + "minWidth": 450.0, + "tableData": "{{J12.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 424.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 454.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732202522898e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 482.0, + "widgetName": "Table9", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 482.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table9.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "0hads8hrdn", + "canFreezeColumn": true, + "rightColumn": 35.0, + "textSize": "0.875rem", + "widgetId": "iy1kzt9l50", + "minWidth": 450.0, + "tableData": "{{J13.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 454.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 487.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 1.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732202482918e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 515.0, + "widgetName": "Table10", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 515.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 35.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table10.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "0hads8hrdn", + "canFreezeColumn": true, + "rightColumn": 35.0, + "textSize": "0.875rem", + "widgetId": "7vz5uyl4on", + "minWidth": 450.0, + "tableData": "{{J14.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 487.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 1.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 518.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 2.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732203485182e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 546.0, + "widgetName": "Table11", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 546.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 36.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table11.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "uc9e74qtec", + "canFreezeColumn": true, + "rightColumn": 27.0, + "textSize": "0.875rem", + "widgetId": "mn6ggd40v7", + "minWidth": 450.0, + "tableData": "{{J14.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 518.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 2.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 548.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 2.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732203622667e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 576.0, + "widgetName": "Table12", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 576.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 36.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table12.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "uc9e74qtec", + "canFreezeColumn": true, + "rightColumn": 27.0, + "textSize": "0.875rem", + "widgetId": "n7i1qn01wm", + "minWidth": 450.0, + "tableData": "{{J16.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 548.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 2.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 519.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 28.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732203622669e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 547.0, + "widgetName": "Table13", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 547.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 62.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "fontStyle": "", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table13.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard", + "cellBackground": "" + } + }, + "key": "uc9e74qtec", + "canFreezeColumn": true, + "rightColumn": 62.0, + "textSize": "0.875rem", + "widgetId": "hbbk1xdbyh", + "minWidth": 450.0, + "tableData": "{{J15.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 519.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 28.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "borderColor": "#E0DEDE", + "isVisibleDownload": true, + "topRow": 548.0, + "isSortable": true, + "type": "TABLE_WIDGET_V2", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [ + { "key": "accentColor" }, + { "key": "borderRadius" }, + { "key": "boxShadow" }, + { "key": "tableData" }, + { "key": "primaryColumns.Member_ID.computedValue" }, + { "key": "primaryColumns.First_Name.computedValue" }, + { "key": "primaryColumns.Last_Name.computedValue" }, + { "key": "primaryColumns.Date_of_Birth.computedValue" }, + { "key": "primaryColumns.Enrollment_Status.computedValue" }, + { "key": "primaryColumns.Prior_Member_ID.computedValue" }, + { "key": "primaryColumns.Gender.computedValue" }, + { "key": "primaryColumns.Drug_Patient.computedValue" }, + { "key": "primaryColumns.Drug_Indication.computedValue" }, + { + "key": "primaryColumns.Drug_Admin_Patient.computedValue" + }, + { + "key": "primaryColumns.Drug_Admin_Indication.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Original_Enrollment_Date_Drug_Admin.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug.computedValue" + }, + { + "key": "primaryColumns.Current_Enrollment_Date_Drug_Admin.computedValue" + }, + { "key": "primaryColumns.Enrollment_Source.computedValue" }, + { "key": "primaryColumns.Address.computedValue" }, + { "key": "primaryColumns.City.computedValue" }, + { "key": "primaryColumns.State.computedValue" }, + { "key": "primaryColumns.Zipcode.computedValue" }, + { "key": "primaryColumns.Phone.computedValue" }, + { "key": "primaryColumns.Email.computedValue" }, + { "key": "primaryColumns.Database_ID.computedValue" }, + { "key": "primaryColumns.Card_Pii.computedValue" }, + { "key": "primaryColumns.Eligibility_Data.computedValue" }, + { "key": "primaryColumns.Medicare.computedValue" }, + { + "key": "primaryColumns.patient_enrollment.computedValue" + }, + { "key": "primaryColumns.provider_data.computedValue" }, + { "key": "primaryColumns.patient_lap.computedValue" }, + { + "key": "primaryColumns.patient_provider_data.computedValue" + }, + { + "key": "primaryColumns.patient_commercial_insurance.computedValue" + }, + { + "key": "primaryColumns.patient_benefits_amounts.computedValue" + }, + { "key": "primaryColumns.card_data.computedValue" }, + { "key": "primaryColumns.verification_data.computedValue" }, + { "key": "primaryColumns.credentials_id.computedValue" }, + { + "key": "primaryColumns.Enrollment_End_Date.computedValue" + }, + { + "key": "primaryColumns.Enrollment_Status_Reason.computedValue" + } + ], + "leftColumn": 29.0, + "delimiter": ",", + "customIsLoadingValue": "", + "defaultSelectedRowIndex": 0.0, + "flexVerticalAlignment": "start", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": false, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2.0, + "totalRecordsCount": 0.0, + "isLoading": false, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "editActions": { + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + }, + "customIsLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "columnUpdatedAt": 1.732203534322e12, + "defaultSelectedRowIndices": [0.0], + "needsErrorInfo": false, + "mobileBottomRow": 576.0, + "widgetName": "Table14", + "defaultPageSize": 0.0, + "columnOrder": [ + "Member_ID", + "First_Name", + "Last_Name", + "Date_of_Birth", + "Enrollment_Status", + "Prior_Member_ID", + "Gender", + "Drug_Patient", + "Drug_Indication", + "Drug_Admin_Patient", + "Drug_Admin_Indication", + "Original_Enrollment_Date_Drug", + "Original_Enrollment_Date_Drug_Admin", + "Current_Enrollment_Date_Drug", + "Current_Enrollment_Date_Drug_Admin", + "Enrollment_Source", + "Address", + "City", + "State", + "Zipcode", + "Phone", + "Email", + "Database_ID", + "Card_Pii", + "Eligibility_Data", + "Medicare", + "patient_enrollment", + "provider_data", + "patient_lap", + "patient_provider_data", + "patient_commercial_insurance", + "patient_benefits_amounts", + "card_data", + "verification_data", + "credentials_id", + "Enrollment_End_Date", + "Enrollment_Status_Reason" + ], + "dynamicPropertyPathList": [{ "key": "tableData" }], + "bottomRow": 576.0, + "columnWidthMap": {}, + "parentRowSpace": 10.0, + "mobileRightColumn": 63.0, + "parentColumnSpace": 13.0625, + "dynamicTriggerPathList": [], + "borderWidth": "1", + "primaryColumns": { + "Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0.0, + "width": 150.0, + "originalId": "Member ID", + "id": "Member_ID", + "alias": "Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "First_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1.0, + "width": 150.0, + "originalId": "First Name", + "id": "First_Name", + "alias": "First Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "First Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"First Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Last_Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2.0, + "width": 150.0, + "originalId": "Last Name", + "id": "Last_Name", + "alias": "Last Name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Last Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Last Name\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Date_of_Birth": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3.0, + "width": 150.0, + "originalId": "Date of Birth", + "id": "Date_of_Birth", + "alias": "Date of Birth", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Date of Birth", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Date of Birth\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4.0, + "width": 150.0, + "originalId": "Enrollment Status", + "id": "Enrollment_Status", + "alias": "Enrollment Status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Prior_Member_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5.0, + "width": 150.0, + "originalId": "Prior Member ID", + "id": "Prior_Member_ID", + "alias": "Prior Member ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Prior Member ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Prior Member ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Gender": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 6.0, + "width": 150.0, + "originalId": "Gender", + "id": "Gender", + "alias": "Gender", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Gender", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Gender\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 7.0, + "width": 150.0, + "originalId": "Drug Patient", + "id": "Drug_Patient", + "alias": "Drug Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 8.0, + "width": 150.0, + "originalId": "Drug Indication", + "id": "Drug_Indication", + "alias": "Drug Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Patient": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 9.0, + "width": 150.0, + "originalId": "Drug Admin Patient", + "id": "Drug_Admin_Patient", + "alias": "Drug Admin Patient", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Patient", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Patient\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Drug_Admin_Indication": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 10.0, + "width": 150.0, + "originalId": "Drug Admin Indication", + "id": "Drug_Admin_Indication", + "alias": "Drug Admin Indication", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Drug Admin Indication", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Drug Admin Indication\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 11.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug", + "id": "Original_Enrollment_Date_Drug", + "alias": "Original Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Original_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 12.0, + "width": 150.0, + "originalId": "Original Enrollment Date Drug Admin", + "id": "Original_Enrollment_Date_Drug_Admin", + "alias": "Original Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Original Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Original Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 13.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug", + "id": "Current_Enrollment_Date_Drug", + "alias": "Current Enrollment Date Drug", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Current_Enrollment_Date_Drug_Admin": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 14.0, + "width": 150.0, + "originalId": "Current Enrollment Date Drug Admin", + "id": "Current_Enrollment_Date_Drug_Admin", + "alias": "Current Enrollment Date Drug Admin", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Current Enrollment Date Drug Admin", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Current Enrollment Date Drug Admin\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Source": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 15.0, + "width": 150.0, + "originalId": "Enrollment Source", + "id": "Enrollment_Source", + "alias": "Enrollment Source", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Source", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Source\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Address": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 16.0, + "width": 150.0, + "originalId": "Address", + "id": "Address", + "alias": "Address", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Address", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Address\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "City": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 17.0, + "width": 150.0, + "originalId": "City", + "id": "City", + "alias": "City", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "City", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"City\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "State": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 18.0, + "width": 150.0, + "originalId": "State", + "id": "State", + "alias": "State", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "State", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"State\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Zipcode": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 19.0, + "width": 150.0, + "originalId": "Zipcode", + "id": "Zipcode", + "alias": "Zipcode", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Zipcode", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Zipcode\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Phone": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 20.0, + "width": 150.0, + "originalId": "Phone", + "id": "Phone", + "alias": "Phone", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Phone\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 21.0, + "width": 150.0, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Email\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Database_ID": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 22.0, + "width": 150.0, + "originalId": "Database ID", + "id": "Database_ID", + "alias": "Database ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "number", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Database ID", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Database ID\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Card_Pii": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 23.0, + "width": 150.0, + "originalId": "Card Pii", + "id": "Card_Pii", + "alias": "Card Pii", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Card Pii", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Card Pii\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Eligibility_Data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 24.0, + "width": 150.0, + "originalId": "Eligibility Data", + "id": "Eligibility_Data", + "alias": "Eligibility Data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Eligibility Data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Eligibility Data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Medicare": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 25.0, + "width": 150.0, + "originalId": "Medicare", + "id": "Medicare", + "alias": "Medicare", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Medicare", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Medicare\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_enrollment": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 26.0, + "width": 150.0, + "originalId": "patient_enrollment", + "id": "patient_enrollment", + "alias": "patient_enrollment", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_enrollment", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_enrollment\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 27.0, + "width": 150.0, + "originalId": "provider_data", + "id": "provider_data", + "alias": "provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_lap": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 28.0, + "width": 150.0, + "originalId": "patient_lap", + "id": "patient_lap", + "alias": "patient_lap", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_lap", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_lap\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_provider_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 29.0, + "width": 150.0, + "originalId": "patient_provider_data", + "id": "patient_provider_data", + "alias": "patient_provider_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_provider_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_provider_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_commercial_insurance": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 30.0, + "width": 150.0, + "originalId": "patient_commercial_insurance", + "id": "patient_commercial_insurance", + "alias": "patient_commercial_insurance", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_commercial_insurance", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_commercial_insurance\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "patient_benefits_amounts": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 31.0, + "width": 150.0, + "originalId": "patient_benefits_amounts", + "id": "patient_benefits_amounts", + "alias": "patient_benefits_amounts", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "patient_benefits_amounts", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"patient_benefits_amounts\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "card_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 32.0, + "width": 150.0, + "originalId": "card_data", + "id": "card_data", + "alias": "card_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "card_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"card_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "verification_data": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 33.0, + "width": 150.0, + "originalId": "verification_data", + "id": "verification_data", + "alias": "verification_data", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "verification_data", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"verification_data\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "credentials_id": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 34.0, + "width": 150.0, + "originalId": "credentials_id", + "id": "credentials_id", + "alias": "credentials_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "credentials_id", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"credentials_id\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_End_Date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 35.0, + "width": 150.0, + "originalId": "Enrollment End Date", + "id": "Enrollment_End_Date", + "alias": "Enrollment End Date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "date", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment End Date", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment End Date\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + }, + "Enrollment_Status_Reason": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 36.0, + "width": 150.0, + "originalId": "Enrollment Status Reason", + "id": "Enrollment_Status_Reason", + "alias": "Enrollment Status Reason", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Enrollment Status Reason", + "isSaveVisible": true, + "isDiscardVisible": true, + "computedValue": "{{Table14.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"Enrollment Status Reason\"]))}}", + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0.0, + "thousandSeparator": true, + "notation": "standard" + } + }, + "key": "uc9e74qtec", + "canFreezeColumn": true, + "rightColumn": 63.0, + "textSize": "0.875rem", + "widgetId": "56iuwt4v10", + "minWidth": 450.0, + "tableData": "{{J17.myfun1.data}}", + "label": "Data", + "searchKey": "", + "parentId": "0", + "renderMode": "CANVAS", + "mobileTopRow": 548.0, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 29.0, + "isVisiblePagination": true, + "verticalAlignment": "CENTER" + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Page1_a2", + "name": "a2", + "confirmBeforeExecute": false, + "pluginType": "API", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_a3", + "name": "a3", + "confirmBeforeExecute": false, + "pluginType": "API", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_a4", + "name": "a4", + "confirmBeforeExecute": false, + "pluginType": "API", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + } + ], + [ + { + "id": "Page1_J12.myfun1", + "name": "J12.myfun1", + "collectionId": "Page1_J12", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return J12.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_J13.myfun1", + "name": "J13.myfun1", + "collectionId": "Page1_J13", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return J13.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_J14.myfun1", + "name": "J14.myfun1", + "collectionId": "Page1_J14", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return J14.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_J15.myfun1", + "name": "J15.myfun1", + "collectionId": "Page1_J15", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return J15.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_J16.myfun1", + "name": "J16.myfun1", + "collectionId": "Page1_J16", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return J16.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_J17.myfun1", + "name": "J17.myfun1", + "collectionId": "Page1_J17", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return J17.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS1.myfun1", + "name": "JS1.myfun1", + "collectionId": "Page1_JS1", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS1.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS10.myfun1", + "name": "JS10.myfun1", + "collectionId": "Page1_JS10", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS10.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS11.myfun1", + "name": "JS11.myfun1", + "collectionId": "Page1_JS11", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS11.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS2.myfun1", + "name": "JS2.myfun1", + "collectionId": "Page1_JS2", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS2.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS3.myfun1", + "name": "JS3.myfun1", + "collectionId": "Page1_JS3", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS3.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS4.myfun1", + "name": "JS4.myfun1", + "collectionId": "Page1_JS4", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS4.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS5.myfun1", + "name": "JS5.myfun1", + "collectionId": "Page1_JS5", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS5.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS6.myfun1", + "name": "JS6.myfun1", + "collectionId": "Page1_JS6", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS6.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS7.myfun1", + "name": "JS7.myfun1", + "collectionId": "Page1_JS7", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS7.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS8.myfun1", + "name": "JS8.myfun1", + "collectionId": "Page1_JS8", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS8.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Page1_JS9.myfun1", + "name": "JS9.myfun1", + "collectionId": "Page1_JS9", + "confirmBeforeExecute": false, + "pluginType": "JS", + "jsonPathKeys": [ + "function () {\n return JS9.lookupTableData;\n}" + ], + "timeoutInMillisecond": 10000.0 + } + ], + [ + { + "id": "Page1_a1", + "name": "a1", + "confirmBeforeExecute": false, + "pluginType": "API", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Page1", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policyMap": {} + }, + "publishedPage": { + "name": "Page1", + "slug": "page1", + "layouts": [ + { + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1224.0, + "snapColumns": 16.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 1250.0, + "containerStyle": "none", + "snapRows": 33.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 4.0, + "minHeight": 1292.0, + "dynamicTriggerPathList": [], + "parentColumnSpace": 1.0, + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [] + }, + "validOnPageLoadActions": true, + "id": "Page1", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policyMap": {} + }, + "gitSyncId": "673f303e49c4c22729bdbe49_c5fd2974-a6a0-4d1f-9407-8d54a2ccd49f", + "deleted": false + } + ], + "actionList": [ + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS1.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS1", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS1.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS1.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:06:31Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:06:31Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_d9a0b7f7-ee12-4b14-b39f-dbe2d66b057a", + "id": "Page1_JS1.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS1.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS1", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS1.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS1.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:06:31Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:06:31Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_d4dcadde-fb80-42e1-b2eb-5030a7d30e32", + "id": "Page1_JS1.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS2.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS2", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS2.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS2.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:53Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:53Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_311aeced-e23f-4979-9701-f1c9c025eb89", + "id": "Page1_JS2.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS2.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS2", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS2.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS2.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:53Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:53Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_e5ad7258-8b51-45dd-bae7-7945f3990192", + "id": "Page1_JS2.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS3.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS3", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS3.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS3.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:57Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:57Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_69a09690-85cd-459d-aeb4-a47e7927b9ac", + "id": "Page1_JS3.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS3.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS3", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS3.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS3.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:57Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:08:57Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a6dcbe58-81bb-4f2f-ab13-b939e0046681", + "id": "Page1_JS3.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS4.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS4", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS4.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS4.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:00Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:00Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_7eedd815-a3d6-4a02-903d-16a99a07cb14", + "id": "Page1_JS4.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS4.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS4", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS4.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS4.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:00Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:00Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_4e6b652a-c97f-4393-ae93-4df1e985f821", + "id": "Page1_JS4.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS5.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS5", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS5.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS5.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:04Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:04Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_0bf51beb-a970-4224-aa88-3cccb3871f60", + "id": "Page1_JS5.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS5.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS5", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS5.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS5.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:04Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:04Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_d65a089e-7bd0-4877-b72f-4d48636efeb1", + "id": "Page1_JS5.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS6.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS6", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS6.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS6.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:08Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:08Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_1a0bacda-6834-46b1-a7f8-085dc92d788c", + "id": "Page1_JS6.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS6.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS6", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS6.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS6.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:08Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:09:08Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_dd8834ab-50f1-42af-9245-b922399ac1e3", + "id": "Page1_JS6.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS7.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS7", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS7.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS7.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:14Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:14Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_c288e626-c60b-4732-bef0-c17e57580866", + "id": "Page1_JS7.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS7.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS7", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS7.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS7.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:14Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:14Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_c9015120-fe46-4c73-ae01-6fee2fbb7a7c", + "id": "Page1_JS7.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS8.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS8", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS8.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS8.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:18Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:18Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_5c73fbdd-e529-44ce-a313-f1df4f83cb58", + "id": "Page1_JS8.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS8.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS8", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS8.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS8.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:18Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:18Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_c3134657-75b9-4797-9d39-a238e89cd993", + "id": "Page1_JS8.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS9.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS9", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS9.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS9.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:21Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:21Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_6b51f36a-27ec-44f9-8fa1-8ceb4d43036a", + "id": "Page1_JS9.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS9.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS9", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS9.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS9.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:21Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:21Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_f6480437-3ce7-4498-ba86-1e23f941df75", + "id": "Page1_JS9.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS10.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS10", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS10.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS10.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:43Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:43Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_625c59ca-e61a-40c5-b116-79127f318c2d", + "id": "Page1_JS10.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS10.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS10", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS10.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS10.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:43Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:43Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_98499923-b994-424d-98dd-9d9b87e197a5", + "id": "Page1_JS10.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "JS11.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS11", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS11.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS11.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:54Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:54Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_537e4713-459d-448e-abf9-c91b7a148708", + "id": "Page1_JS11.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "JS11.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_JS11", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return JS11.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return JS11.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:54Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:14:54Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_3ec25e68-518e-4f74-ab15-bc4cefe4a769", + "id": "Page1_JS11.myfun2", + "deleted": false + }, + { + "pluginType": "API", + "pluginId": "restapi-plugin", + "unpublishedAction": { + "name": "a1", + "datasource": { + "name": "DEFAULT_REST_DATASOURCE", + "pluginId": "restapi-plugin", + "datasourceConfiguration": { "url": "https://randomuser.me" }, + "invalids": [], + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "path": "/api/", + "headers": [], + "autoGeneratedHeaders": [], + "encodeParamsToggle": true, + "queryParameters": [{ "key": "results", "value": "2000" }], + "body": "", + "bodyFormData": [], + "httpMethod": "GET", + "httpVersion": "HTTP11", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [{ "value": true }], + "formData": { "apiContentType": "none" } + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:22:38Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:22:38Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_39b5fd84-a164-4f1e-be74-954c200d88f2", + "id": "Page1_a1", + "deleted": false + }, + { + "pluginType": "API", + "pluginId": "restapi-plugin", + "unpublishedAction": { + "name": "a2", + "datasource": { + "name": "DEFAULT_REST_DATASOURCE", + "pluginId": "restapi-plugin", + "datasourceConfiguration": { "url": "https://openlibrary.org" }, + "invalids": [], + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "path": "/search.json", + "headers": [], + "autoGeneratedHeaders": [], + "encodeParamsToggle": true, + "queryParameters": [ + { "key": "q", "value": "the+lord+of+the+rings" }, + { "key": "limit", "value": "1000" } + ], + "body": "", + "bodyFormData": [], + "httpMethod": "GET", + "httpVersion": "HTTP11", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [{ "value": true }], + "formData": { "apiContentType": "none" } + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:25:11Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:25:11Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_d534d03f-ce7b-457e-815f-64037b9db94a", + "id": "Page1_a2", + "deleted": false + }, + { + "pluginType": "API", + "pluginId": "restapi-plugin", + "unpublishedAction": { + "name": "a3", + "datasource": { + "name": "DEFAULT_REST_DATASOURCE", + "pluginId": "restapi-plugin", + "datasourceConfiguration": { "url": "https://my.api.mockaroo.com" }, + "invalids": [], + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "path": "/users.json", + "headers": [], + "autoGeneratedHeaders": [], + "encodeParamsToggle": true, + "queryParameters": [{ "key": "key", "value": "8b0f4500" }], + "body": "", + "bodyFormData": [], + "httpMethod": "GET", + "httpVersion": "HTTP11", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [{ "value": true }], + "formData": { "apiContentType": "none" } + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:25:17Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:25:17Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_8ce3c37c-1049-4f98-b463-2f558b0fa588", + "id": "Page1_a3", + "deleted": false + }, + { + "pluginType": "API", + "pluginId": "restapi-plugin", + "unpublishedAction": { + "name": "a4", + "datasource": { + "name": "DEFAULT_REST_DATASOURCE", + "pluginId": "restapi-plugin", + "datasourceConfiguration": { "url": "https://randomuser.me" }, + "invalids": [], + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "path": "/api/", + "headers": [], + "autoGeneratedHeaders": [], + "encodeParamsToggle": true, + "queryParameters": [{ "key": "results", "value": "2000" }], + "body": "", + "bodyFormData": [], + "httpMethod": "GET", + "httpVersion": "HTTP11", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [{ "value": true }], + "formData": { "apiContentType": "none" } + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:25:20Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T13:25:20Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_1d955d19-6600-43e7-a817-d35d3b1b86a4", + "id": "Page1_a4", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "J12.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J12", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J12.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J12.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:19:59Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:19:59Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a6f19045-cd9b-421b-9839-2ae115f1ece8", + "id": "Page1_J12.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "J12.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J12", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J12.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J12.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:19:59Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:19:59Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_dd0a63f0-1950-4dba-84cf-bf4e20e227ba", + "id": "Page1_J12.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "J13.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J13", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J13.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J13.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:07Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:07Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_dd43060e-f89b-444c-92f7-592a05557e44", + "id": "Page1_J13.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "J13.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J13", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J13.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J13.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:07Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:07Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_bbabb3c7-aad7-437d-a9f3-0cc17b68ae55", + "id": "Page1_J13.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "J14.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J14", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J14.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J14.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:11Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:11Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a4a16286-45fc-4a9d-a6d5-27bde682238f", + "id": "Page1_J14.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "J14.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J14", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J14.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J14.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:11Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:20:11Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_09d7ce5c-7b45-4c29-a13a-0d0b0c4cb80d", + "id": "Page1_J14.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "J15.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J15", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J15.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J15.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:29:41Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:29:41Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_4de1fe7b-faf0-49c0-b1ed-a317738403b0", + "id": "Page1_J15.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "J15.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J15", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J15.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J15.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:29:41Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:29:41Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_cd816258-4356-4077-9d5b-3e87fe4c9a68", + "id": "Page1_J15.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "J16.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J16", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J16.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J16.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:01Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:01Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_fb7e1fbc-d897-4d98-b8d4-85fc500a67db", + "id": "Page1_J16.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "J16.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J16", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J16.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J16.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:01Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:01Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_76822fc5-3866-4ea7-beff-3177ef03fc11", + "id": "Page1_J16.myfun2", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun1", + "fullyQualifiedName": "J17.myfun1", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J17", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J17.lookupTableData;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J17.lookupTableData;\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:09Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:09Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_cc081c81-36ee-497b-9e1a-5ef05b868abf", + "id": "Page1_J17.myfun1", + "deleted": false + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "myfun2", + "fullyQualifiedName": "J17.myfun2", + "datasource": { + "name": "UNUSED_DATASOURCE", + "pluginId": "js-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "pageId": "Page1", + "collectionId": "Page1_J17", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "function () {\n return J17.myfun1();\n}", + "selfReferencingDataPaths": [], + "jsArguments": [] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ "key": "body" }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["function () {\n return J17.myfun1();\n}"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:09Z" + }, + "publishedAction": { + "datasource": { + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policyMap": {}, + "policies": [], + "userPermissions": [] + }, + "messages": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policyMap": {}, + "userPermissions": [], + "createdAt": "2024-11-21T15:30:09Z" + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a19cd2d7-d2bd-479a-9840-5e1165bd5a7b", + "id": "Page1_J17.myfun2", + "deleted": false + } + ], + "actionCollectionList": [ + { + "unpublishedCollection": { + "name": "JS1", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "publishedCollection": { + "name": "JSObject2", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t]\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a4656702-3d5e-40e6-804f-7407f5893b19", + "id": "Page1_JS1", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS2", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_15a82646-7f23-4425-9a68-4f4aaf9f4313", + "id": "Page1_JS2", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS3", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_7969a5a9-12b3-462a-94a2-a800d8150b94", + "id": "Page1_JS3", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS4", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_0216ffb1-313c-4c41-8cf6-03905369cdc4", + "id": "Page1_JS4", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS5", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_916ac082-39d1-4c46-9fc2-4106a25b6d39", + "id": "Page1_JS5", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS6", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_63f3fae2-647c-4ad5-8aa7-118c4b32e624", + "id": "Page1_JS6", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS7", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_32906415-5a06-4da7-a425-17128de822b4", + "id": "Page1_JS7", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS8", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_904ad6da-d412-4471-8623-b0c62bf120f9", + "id": "Page1_JS8", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS9", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_c6efc872-cc02-4c84-8d93-3fdc53fc37b5", + "id": "Page1_JS9", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS10", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_caf2ae88-9bd6-4d14-806b-b5b656da19ae", + "id": "Page1_JS10", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "JS11", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_5284db8f-cfec-40f1-bca6-0c45bc49fb7c", + "id": "Page1_JS11", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "J12", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a7e193b5-5ed3-49cf-a710-64bbb2412423", + "id": "Page1_J12", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "J13", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_7e215895-262c-40f4-8b91-86ca127cb227", + "id": "Page1_J13", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "J14", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_0cb980e8-2636-4aa9-82ef-70f4005207a9", + "id": "Page1_J14", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "J15", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_a5440a25-1fe2-44ed-83d5-401250b9df11", + "id": "Page1_J15", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "J16", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_b2733e6d-1045-4a9c-a05e-0d6c5919d1dc", + "id": "Page1_J16", + "deleted": false + }, + { + "unpublishedCollection": { + "name": "J17", + "pageId": "Page1", + "pluginId": "js-plugin", + "pluginType": "JS", + "actions": [], + "archivedActions": [], + "body": "export default {\n\tlookupTableData: [\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725528\",\n\t\t\t\"First Name\": \"John\",\n\t\t\t\"Last Name\": \"Doe\",\n\t\t\t\"Date of Birth\": \"2002-11-14\",\n\t\t\t\"Enrollment Status\": \"Pending\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Male\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2023-11-17\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n\t\t\t\"Current Enrollment Date Drug\": \"2024-01-01\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"patient\",\n\t\t\t\"Address\": \"123 Main St\",\n\t\t\t\"City\": \"Newport\",\n\t\t\t\"State\": \"CA\",\n\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\"Phone\": \"(123) 456-7890\",\n\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\"Database ID\": 2004642,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"CA\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"enrollment_date\": \"2023-11-17\",\n\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\"date_of_birth\": \"2002-11-14\",\n\t\t\t\t\"gender\": \"Male\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(123) 456-7890\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"123 Main St\",\n\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\"zip_code\": \"11111\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"patient\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"john.doe@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725528\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500011\",\n\t\t\t\t\t\t\"npi\": \"0000000006\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"\",\n\t\t\t\t\t\t\"npi\": \"\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"John\",\n\t\t\t\t\t\t\"npi\": \"0000000006\",\n\t\t\t\t\t\t\"last_name\": \"Doe\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"1234567890\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"123 Main St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Newport\",\n\t\t\t\t\t\t\t\"state\": \"CA\",\n\t\t\t\t\t\t\t\"zip_code\": \"11111\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"\",\n\t\t\t\t\t\t\"npi\": \"\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\t\"zip_code\": \"\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"\",\n\t\t\t\t\t\"plan_type\": \"\",\n\t\t\t\t\t\"member_number\": \"\",\n\t\t\t\t\t\"group_number\": \"\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 15000,\n\t\t\t\t\t\"total_amount_drug_admin\": 1500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 0,\n\t\t\t\t\t\"used_amount_drug_admin\": 0,\n\t\t\t\t\t\"use_count_drug\": 0,\n\t\t\t\t\t\"use_count_drug_admin\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"John\",\n\t\t\t\t\t\t\"LastName\": \"Doe\",\n\t\t\t\t\t\t\"DateOfBirth\": \"2002-11-14\",\n\t\t\t\t\t\t\"Gender\": \"Male\",\n\t\t\t\t\t\t\"City\": \"Newport\",\n\t\t\t\t\t\t\"State\": \"CA\",\n\t\t\t\t\t\t\"Zipcode\": \"11111\",\n\t\t\t\t\t\t\"Email\": \"john.doe@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(123) 456-7890\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"BCBS\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"123\",\n\t\t\t\t\t\t\"effective_date\": \"2023-01-01\",\n\t\t\t\t\t\t\"group_number\": \"12345\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"\",\n\t\t\t\t\t\t\"payer_type\": \"\",\n\t\t\t\t\t\t\"plan_bin\": \"\",\n\t\t\t\t\t\t\"plan_pcn\": \"\",\n\t\t\t\t\t\t\"plan_group\": \"\",\n\t\t\t\t\t\t\"plan_id\": \"\",\n\t\t\t\t\t\t\"plan_start_date\": \"\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725528\",\n\t\t\t\t\t\t\"Bin\": \"123456\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"15000\",\n\t\t\t\t\t\t\"Status\": \"Inactive\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Not Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725528\",\n\t\t\t\"Enrollment End Date\": \"2024-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725529\",\n\t\t\t\"First Name\": \"Jane\",\n\t\t\t\"Last Name\": \"Smith\",\n\t\t\t\"Date of Birth\": \"1988-03-22\",\n\t\t\t\"Enrollment Status\": \"Active\",\n\t\t\t\"Prior Member ID\": \"1234567890\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"N\",\n\t\t\t\"Drug Indication\": \"NA\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2022-08-01\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n\t\t\t\"Current Enrollment Date Drug\": \"\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n\t\t\t\"Enrollment Source\": \"provider\",\n\t\t\t\"Address\": \"456 Elm St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\"Phone\": \"(217) 555-1234\",\n\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\"Database ID\": 2004643,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"2\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"enrollment_date\": \"2022-08-01\",\n\t\t\t\t\"first_name\": \"Jane\",\n\t\t\t\t\"last_name\": \"Smith\",\n\t\t\t\t\"date_of_birth\": \"1988-03-22\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-1234\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"456 Elm St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62704\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"provider\",\n\t\t\t\t\"phone_type\": \"Mobile\",\n\t\t\t\t\"email\": \"jane.smith@example.com\",\n\t\t\t\t\"email_opt_in\": \"Y\",\n\t\t\t\t\"member_id\": \"1145725529\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500012\",\n\t\t\t\t\t\t\"npi\": \"0000000007\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500013\",\n\t\t\t\t\t\t\"npi\": \"0000000008\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"James\",\n\t\t\t\t\t\t\"npi\": \"0000000007\",\n\t\t\t\t\t\t\"last_name\": \"Brown\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175551234\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"456 Elm St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62704\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"practice_name\": \"Clinic 2\",\n\t\t\t\t\t\t\"npi\": \"0000000008\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175554321\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Oak St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"CVS Caremark\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"789\",\n\t\t\t\t\t\"group_number\": \"98765\",\n\t\t\t\t\t\"bin\": \"987654\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 5000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1500,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 20000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2500,\n\t\t\t\t\t\"balance_amount_drug\": 10000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 500,\n\t\t\t\t\t\"used_amount_drug\": 10000,\n\t\t\t\t\t\"used_amount_drug_admin\": 2000,\n\t\t\t\t\t\"use_count_drug\": 6,\n\t\t\t\t\t\"use_count_drug_admin\": 4\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Jane\",\n\t\t\t\t\t\t\"LastName\": \"Smith\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1988-03-22\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62704\",\n\t\t\t\t\t\t\"Email\": \"jane.smith@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-1234\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"Aetna\",\n\t\t\t\t\t\t\"plan_type\": \"PPO\",\n\t\t\t\t\t\t\"member_number\": \"456\",\n\t\t\t\t\t\t\"effective_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"group_number\": \"67890\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"CVS Caremark\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"987654\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"98765\",\n\t\t\t\t\t\t\"plan_id\": \"789\",\n\t\t\t\t\t\t\"plan_start_date\": \"2022-08-01\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725529\",\n\t\t\t\t\t\t\"Bin\": \"987654\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"20000\",\n\t\t\t\t\t\t\"Status\": \"Active\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Determined\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725529\",\n\t\t\t\"Enrollment End Date\": \"2025-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Confirmed\"\n\t\t},\n\t\t{\n\t\t\t\"Member ID\": \"1145725530\",\n\t\t\t\"First Name\": \"Alice\",\n\t\t\t\"Last Name\": \"Johnson\",\n\t\t\t\"Date of Birth\": \"1990-05-15\",\n\t\t\t\"Enrollment Status\": \"Expired\",\n\t\t\t\"Prior Member ID\": \"\",\n\t\t\t\"Gender\": \"Female\",\n\t\t\t\"Drug Patient\": \"Y\",\n\t\t\t\"Drug Indication\": \"Indication Drug\",\n\t\t\t\"Drug Admin Patient\": \"Y\",\n\t\t\t\"Drug Admin Indication\": \"Indication Admin\",\n\t\t\t\"Original Enrollment Date Drug\": \"2021-03-10\",\n\t\t\t\"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n\t\t\t\"Current Enrollment Date Drug\": \"2022-03-10\",\n\t\t\t\"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n\t\t\t\"Enrollment Source\": \"self\",\n\t\t\t\"Address\": \"789 Pine St\",\n\t\t\t\"City\": \"Springfield\",\n\t\t\t\"State\": \"IL\",\n\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\"Phone\": \"(217) 555-9876\",\n\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\"Database ID\": 3005754,\n\t\t\t\"Card Pii\": \"\",\n\t\t\t\"Eligibility Data\": {\n\t\t\t\t\"drug\": {\n\t\t\t\t\t\"answer_01\": \"yes\",\n\t\t\t\t\t\"answer_02\": \"no\",\n\t\t\t\t\t\"answer_03\": \"1\",\n\t\t\t\t\t\"answer_04\": \"yes\",\n\t\t\t\t\t\"answer_05\": \"no\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"disagree\",\n\t\t\t\t\t\"answer_18\": \"disagree\"\n\t\t\t\t},\n\t\t\t\t\"admin\": {\n\t\t\t\t\t\"answer_01\": \"no\",\n\t\t\t\t\t\"answer_02\": \"yes\",\n\t\t\t\t\t\"answer_03\": \"0\",\n\t\t\t\t\t\"answer_04\": \"no\",\n\t\t\t\t\t\"answer_05\": \"yes\",\n\t\t\t\t\t\"answer_06\": \"IL\",\n\t\t\t\t\t\"answer_07\": \"no\",\n\t\t\t\t\t\"answer_08\": \"no\",\n\t\t\t\t\t\"answer_09\": \"agree\",\n\t\t\t\t\t\"answer_18\": \"agree\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"Medicare\": \"\",\n\t\t\t\"patient_enrollment\": {\n\t\t\t\t\"original_enrollment_date\": \"2021-03-10\",\n\t\t\t\t\"enrollment_date\": \"2022-03-10\",\n\t\t\t\t\"first_name\": \"Alice\",\n\t\t\t\t\"last_name\": \"Johnson\",\n\t\t\t\t\"date_of_birth\": \"1990-05-15\",\n\t\t\t\t\"gender\": \"Female\",\n\t\t\t\t\"request_card\": \"n\",\n\t\t\t\t\"phone\": \"(217) 555-9876\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"789 Pine St\",\n\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\"zip_code\": \"62701\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"commercial_insurance\": {\n\t\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"lap\": {\n\t\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"phone\": \"\"\n\t\t\t\t},\n\t\t\t\t\"enrolled_by\": \"self\",\n\t\t\t\t\"phone_type\": \"Home\",\n\t\t\t\t\"email\": \"alice.johnson@example.com\",\n\t\t\t\t\"email_opt_in\": \"N\",\n\t\t\t\t\"member_id\": \"1145725530\"\n\t\t\t},\n\t\t\t\"provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"provider_id\": \"500014\",\n\t\t\t\t\t\t\"npi\": \"0000000009\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_lap\": {\n\t\t\t\t\"first_name\": \"\",\n\t\t\t\t\"last_name\": \"\",\n\t\t\t\t\"address\": {\n\t\t\t\t\t\"address_1\": \"\",\n\t\t\t\t\t\"city\": \"\",\n\t\t\t\t\t\"state\": \"\",\n\t\t\t\t\t\"zip_code\": \"\",\n\t\t\t\t\t\"address_2\": \"\"\n\t\t\t\t},\n\t\t\t\t\"phone\": \"\"\n\t\t\t},\n\t\t\t\"patient_provider_data\": {\n\t\t\t\t\"primary\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"first_name\": \"Linda\",\n\t\t\t\t\t\t\"npi\": \"0000000009\",\n\t\t\t\t\t\t\"last_name\": \"White\",\n\t\t\t\t\t\t\"phones\": {\n\t\t\t\t\t\t\t\"phone\": \"2175559876\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"address\": {\n\t\t\t\t\t\t\t\"address1\": \"789 Pine St\",\n\t\t\t\t\t\t\t\"address2\": \"\",\n\t\t\t\t\t\t\t\"city\": \"Springfield\",\n\t\t\t\t\t\t\t\"state\": \"IL\",\n\t\t\t\t\t\t\t\"zip_code\": \"62701\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"secondary\": []\n\t\t\t},\n\t\t\t\"patient_commercial_insurance\": {\n\t\t\t\t\"medical_insurance\": {\n\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t},\n\t\t\t\t\"rx_insurance\": {\n\t\t\t\t\t\"name\": \"OptumRx\",\n\t\t\t\t\t\"plan_type\": \"Rx\",\n\t\t\t\t\t\"member_number\": \"321\",\n\t\t\t\t\t\"group_number\": \"13579\",\n\t\t\t\t\t\"bin\": \"135791\",\n\t\t\t\t\t\"pcn\": \"pcn\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"patient_benefits_amounts\": {\n\t\t\t\t\"current_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 15000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1500,\n\t\t\t\t\t\"used_amount_drug\": 3000,\n\t\t\t\t\t\"used_amount_drug_admin\": 500,\n\t\t\t\t\t\"use_count_drug\": 1,\n\t\t\t\t\t\"use_count_drug_admin\": 1\n\t\t\t\t},\n\t\t\t\t\"prior_period\": {\n\t\t\t\t\t\"total_amount_drug\": 18000,\n\t\t\t\t\t\"total_amount_drug_admin\": 2000,\n\t\t\t\t\t\"balance_amount_drug\": 9000,\n\t\t\t\t\t\"balance_amount_drug_admin\": 1000,\n\t\t\t\t\t\"used_amount_drug\": 9000,\n\t\t\t\t\t\"used_amount_drug_admin\": 1000,\n\t\t\t\t\t\"use_count_drug\": 3,\n\t\t\t\t\t\"use_count_drug_admin\": 2\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"card_data\": {},\n\t\t\t\"verification_data\": {\n\t\t\t\t\"request\": {\n\t\t\t\t\t\"PatientPersonalInfo\": {\n\t\t\t\t\t\t\"FirstName\": \"Alice\",\n\t\t\t\t\t\t\"LastName\": \"Johnson\",\n\t\t\t\t\t\t\"DateOfBirth\": \"1990-05-15\",\n\t\t\t\t\t\t\"Gender\": \"Female\",\n\t\t\t\t\t\t\"City\": \"Springfield\",\n\t\t\t\t\t\t\"State\": \"IL\",\n\t\t\t\t\t\t\"Zipcode\": \"62701\",\n\t\t\t\t\t\t\"Email\": \"alice.johnson@example.com\",\n\t\t\t\t\t\t\"PhoneNumber\": \"(217) 555-9876\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientMedicalInsurance\": {\n\t\t\t\t\t\t\"name\": \"UnitedHealthcare\",\n\t\t\t\t\t\t\"plan_type\": \"HMO\",\n\t\t\t\t\t\t\"member_number\": \"654\",\n\t\t\t\t\t\t\"effective_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"group_number\": \"54321\",\n\t\t\t\t\t\t\"bin\": \"\",\n\t\t\t\t\t\t\"pcn\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"PatientPharmacyInsurance\": {\n\t\t\t\t\t\t\"payer_name\": \"OptumRx\",\n\t\t\t\t\t\t\"payer_type\": \"Rx\",\n\t\t\t\t\t\t\"plan_bin\": \"135791\",\n\t\t\t\t\t\t\"plan_pcn\": \"pcn\",\n\t\t\t\t\t\t\"plan_group\": \"13579\",\n\t\t\t\t\t\t\"plan_id\": \"321\",\n\t\t\t\t\t\t\"plan_start_date\": \"2021-03-10\",\n\t\t\t\t\t\t\"plan_end_date\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"CardRequestInfo\": {\n\t\t\t\t\t\t\"Type\": \"Xolair_WEB\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"response\": {\n\t\t\t\t\t\"CardResponseInfo\": {\n\t\t\t\t\t\t\"MemberId\": \"1145725530\",\n\t\t\t\t\t\t\"Bin\": \"135791\",\n\t\t\t\t\t\t\"Pcn\": \"pcn\",\n\t\t\t\t\t\t\"Group\": \"group\",\n\t\t\t\t\t\t\"AllowableUses\": \"999\",\n\t\t\t\t\t\t\"BenefitAmount\": \"18000\",\n\t\t\t\t\t\t\"Status\": \"Expired\"\n\t\t\t\t\t},\n\t\t\t\t\t\"TransactionInfo\": {\n\t\t\t\t\t\t\"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n\t\t\t\t\t\t\"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n\t\t\t\t\t\t\"EnrollmentStatus\": \"Expired\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"credentials_id\": \"1145725530\",\n\t\t\t\"Enrollment End Date\": \"2023-12-31\",\n\t\t\t\"Enrollment Status Reason\": \"Eligibility Expired\"\n\t\t}\n\t],\n\tmyfun1(){\n\t\treturn this.lookupTableData\n\t},\n\tmyfun2(){\n\t\treturn this.myfun1()\n\t}\n\n}", + "variables": [ + { + "name": "lookupTableData", + "value": "[{\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}, {\n \"Member ID\": \"1145725528\",\n \"First Name\": \"John\",\n \"Last Name\": \"Doe\",\n \"Date of Birth\": \"2002-11-14\",\n \"Enrollment Status\": \"Pending\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Male\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2023-11-17\",\n \"Original Enrollment Date Drug Admin\": \"2023-11-17\",\n \"Current Enrollment Date Drug\": \"2024-01-01\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"patient\",\n \"Address\": \"123 Main St\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Phone\": \"(123) 456-7890\",\n \"Email\": \"john.doe@example.com\",\n \"Database ID\": 2004642,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"CA\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2023-11-17\",\n \"enrollment_date\": \"2023-11-17\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"date_of_birth\": \"2002-11-14\",\n \"gender\": \"Male\",\n \"request_card\": \"n\",\n \"phone\": \"(123) 456-7890\",\n \"address\": {\n \"address_1\": \"123 Main St\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"patient\",\n \"phone_type\": \"Home\",\n \"email\": \"john.doe@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725528\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500011\",\n \"npi\": \"0000000006\"\n }],\n \"secondary\": [{\n \"provider_id\": \"\",\n \"npi\": \"\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"John\",\n \"npi\": \"0000000006\",\n \"last_name\": \"Doe\",\n \"phones\": {\n \"phone\": \"1234567890\"\n },\n \"address\": {\n \"address1\": \"123 Main St\",\n \"address2\": \"\",\n \"city\": \"Newport\",\n \"state\": \"CA\",\n \"zip_code\": \"11111\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"\",\n \"npi\": \"\",\n \"phones\": {\n \"phone\": \"\"\n },\n \"address\": {\n \"address1\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"\",\n \"plan_type\": \"\",\n \"member_number\": \"\",\n \"group_number\": \"\",\n \"bin\": \"\",\n \"pcn\": \"\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n },\n \"prior_period\": {\n \"total_amount_drug\": 15000,\n \"total_amount_drug_admin\": 1500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 0,\n \"used_amount_drug_admin\": 0,\n \"use_count_drug\": 0,\n \"use_count_drug_admin\": 0\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"DateOfBirth\": \"2002-11-14\",\n \"Gender\": \"Male\",\n \"City\": \"Newport\",\n \"State\": \"CA\",\n \"Zipcode\": \"11111\",\n \"Email\": \"john.doe@example.com\",\n \"PhoneNumber\": \"(123) 456-7890\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"BCBS\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"123\",\n \"effective_date\": \"2023-01-01\",\n \"group_number\": \"12345\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"\",\n \"payer_type\": \"\",\n \"plan_bin\": \"\",\n \"plan_pcn\": \"\",\n \"plan_group\": \"\",\n \"plan_id\": \"\",\n \"plan_start_date\": \"\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725528\",\n \"Bin\": \"123456\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"15000\",\n \"Status\": \"Inactive\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e2f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Not Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725528\",\n \"Enrollment End Date\": \"2024-12-31\",\n \"Enrollment Status Reason\": \"\"\n}, {\n \"Member ID\": \"1145725529\",\n \"First Name\": \"Jane\",\n \"Last Name\": \"Smith\",\n \"Date of Birth\": \"1988-03-22\",\n \"Enrollment Status\": \"Active\",\n \"Prior Member ID\": \"1234567890\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"N\",\n \"Drug Indication\": \"NA\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2022-08-01\",\n \"Original Enrollment Date Drug Admin\": \"2022-08-01\",\n \"Current Enrollment Date Drug\": \"\",\n \"Current Enrollment Date Drug Admin\": \"2024-01-01\",\n \"Enrollment Source\": \"provider\",\n \"Address\": \"456 Elm St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Phone\": \"(217) 555-1234\",\n \"Email\": \"jane.smith@example.com\",\n \"Database ID\": 2004643,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"no\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"2\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2022-08-01\",\n \"enrollment_date\": \"2022-08-01\",\n \"first_name\": \"Jane\",\n \"last_name\": \"Smith\",\n \"date_of_birth\": \"1988-03-22\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-1234\",\n \"address\": {\n \"address_1\": \"456 Elm St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"provider\",\n \"phone_type\": \"Mobile\",\n \"email\": \"jane.smith@example.com\",\n \"email_opt_in\": \"Y\",\n \"member_id\": \"1145725529\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500012\",\n \"npi\": \"0000000007\"\n }],\n \"secondary\": [{\n \"provider_id\": \"500013\",\n \"npi\": \"0000000008\"\n }]\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"James\",\n \"npi\": \"0000000007\",\n \"last_name\": \"Brown\",\n \"phones\": {\n \"phone\": \"2175551234\"\n },\n \"address\": {\n \"address1\": \"456 Elm St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62704\"\n }\n }],\n \"secondary\": [{\n \"practice_name\": \"Clinic 2\",\n \"npi\": \"0000000008\",\n \"phones\": {\n \"phone\": \"2175554321\"\n },\n \"address\": {\n \"address1\": \"789 Oak St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }]\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"CVS Caremark\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"789\",\n \"group_number\": \"98765\",\n \"bin\": \"987654\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 5000,\n \"used_amount_drug_admin\": 1500,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n },\n \"prior_period\": {\n \"total_amount_drug\": 20000,\n \"total_amount_drug_admin\": 2500,\n \"balance_amount_drug\": 10000,\n \"balance_amount_drug_admin\": 500,\n \"used_amount_drug\": 10000,\n \"used_amount_drug_admin\": 2000,\n \"use_count_drug\": 6,\n \"use_count_drug_admin\": 4\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Jane\",\n \"LastName\": \"Smith\",\n \"DateOfBirth\": \"1988-03-22\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62704\",\n \"Email\": \"jane.smith@example.com\",\n \"PhoneNumber\": \"(217) 555-1234\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"Aetna\",\n \"plan_type\": \"PPO\",\n \"member_number\": \"456\",\n \"effective_date\": \"2022-08-01\",\n \"group_number\": \"67890\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"CVS Caremark\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"987654\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"98765\",\n \"plan_id\": \"789\",\n \"plan_start_date\": \"2022-08-01\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725529\",\n \"Bin\": \"987654\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"20000\",\n \"Status\": \"Active\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"e3f07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-11-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Determined\"\n }\n }\n },\n \"credentials_id\": \"1145725529\",\n \"Enrollment End Date\": \"2025-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Confirmed\"\n}, {\n \"Member ID\": \"1145725530\",\n \"First Name\": \"Alice\",\n \"Last Name\": \"Johnson\",\n \"Date of Birth\": \"1990-05-15\",\n \"Enrollment Status\": \"Expired\",\n \"Prior Member ID\": \"\",\n \"Gender\": \"Female\",\n \"Drug Patient\": \"Y\",\n \"Drug Indication\": \"Indication Drug\",\n \"Drug Admin Patient\": \"Y\",\n \"Drug Admin Indication\": \"Indication Admin\",\n \"Original Enrollment Date Drug\": \"2021-03-10\",\n \"Original Enrollment Date Drug Admin\": \"2021-03-10\",\n \"Current Enrollment Date Drug\": \"2022-03-10\",\n \"Current Enrollment Date Drug Admin\": \"2022-03-10\",\n \"Enrollment Source\": \"self\",\n \"Address\": \"789 Pine St\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Phone\": \"(217) 555-9876\",\n \"Email\": \"alice.johnson@example.com\",\n \"Database ID\": 3005754,\n \"Card Pii\": \"\",\n \"Eligibility Data\": {\n \"drug\": {\n \"answer_01\": \"yes\",\n \"answer_02\": \"no\",\n \"answer_03\": \"1\",\n \"answer_04\": \"yes\",\n \"answer_05\": \"no\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"disagree\",\n \"answer_18\": \"disagree\"\n },\n \"admin\": {\n \"answer_01\": \"no\",\n \"answer_02\": \"yes\",\n \"answer_03\": \"0\",\n \"answer_04\": \"no\",\n \"answer_05\": \"yes\",\n \"answer_06\": \"IL\",\n \"answer_07\": \"no\",\n \"answer_08\": \"no\",\n \"answer_09\": \"agree\",\n \"answer_18\": \"agree\"\n }\n },\n \"Medicare\": \"\",\n \"patient_enrollment\": {\n \"original_enrollment_date\": \"2021-03-10\",\n \"enrollment_date\": \"2022-03-10\",\n \"first_name\": \"Alice\",\n \"last_name\": \"Johnson\",\n \"date_of_birth\": \"1990-05-15\",\n \"gender\": \"Female\",\n \"request_card\": \"n\",\n \"phone\": \"(217) 555-9876\",\n \"address\": {\n \"address_1\": \"789 Pine St\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\",\n \"address_2\": \"\"\n },\n \"commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"enrolled_by\": \"self\",\n \"phone_type\": \"Home\",\n \"email\": \"alice.johnson@example.com\",\n \"email_opt_in\": \"N\",\n \"member_id\": \"1145725530\"\n },\n \"provider_data\": {\n \"primary\": [{\n \"provider_id\": \"500014\",\n \"npi\": \"0000000009\"\n }],\n \"secondary\": []\n },\n \"patient_lap\": {\n \"first_name\": \"\",\n \"last_name\": \"\",\n \"address\": {\n \"address_1\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"address_2\": \"\"\n },\n \"phone\": \"\"\n },\n \"patient_provider_data\": {\n \"primary\": [{\n \"first_name\": \"Linda\",\n \"npi\": \"0000000009\",\n \"last_name\": \"White\",\n \"phones\": {\n \"phone\": \"2175559876\"\n },\n \"address\": {\n \"address1\": \"789 Pine St\",\n \"address2\": \"\",\n \"city\": \"Springfield\",\n \"state\": \"IL\",\n \"zip_code\": \"62701\"\n }\n }],\n \"secondary\": []\n },\n \"patient_commercial_insurance\": {\n \"medical_insurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"rx_insurance\": {\n \"name\": \"OptumRx\",\n \"plan_type\": \"Rx\",\n \"member_number\": \"321\",\n \"group_number\": \"13579\",\n \"bin\": \"135791\",\n \"pcn\": \"pcn\"\n }\n },\n \"patient_benefits_amounts\": {\n \"current_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 15000,\n \"balance_amount_drug_admin\": 1500,\n \"used_amount_drug\": 3000,\n \"used_amount_drug_admin\": 500,\n \"use_count_drug\": 1,\n \"use_count_drug_admin\": 1\n },\n \"prior_period\": {\n \"total_amount_drug\": 18000,\n \"total_amount_drug_admin\": 2000,\n \"balance_amount_drug\": 9000,\n \"balance_amount_drug_admin\": 1000,\n \"used_amount_drug\": 9000,\n \"used_amount_drug_admin\": 1000,\n \"use_count_drug\": 3,\n \"use_count_drug_admin\": 2\n }\n },\n \"card_data\": {},\n \"verification_data\": {\n \"request\": {\n \"PatientPersonalInfo\": {\n \"FirstName\": \"Alice\",\n \"LastName\": \"Johnson\",\n \"DateOfBirth\": \"1990-05-15\",\n \"Gender\": \"Female\",\n \"City\": \"Springfield\",\n \"State\": \"IL\",\n \"Zipcode\": \"62701\",\n \"Email\": \"alice.johnson@example.com\",\n \"PhoneNumber\": \"(217) 555-9876\"\n },\n \"PatientMedicalInsurance\": {\n \"name\": \"UnitedHealthcare\",\n \"plan_type\": \"HMO\",\n \"member_number\": \"654\",\n \"effective_date\": \"2021-03-10\",\n \"group_number\": \"54321\",\n \"bin\": \"\",\n \"pcn\": \"\"\n },\n \"PatientPharmacyInsurance\": {\n \"payer_name\": \"OptumRx\",\n \"payer_type\": \"Rx\",\n \"plan_bin\": \"135791\",\n \"plan_pcn\": \"pcn\",\n \"plan_group\": \"13579\",\n \"plan_id\": \"321\",\n \"plan_start_date\": \"2021-03-10\",\n \"plan_end_date\": \"\"\n },\n \"CardRequestInfo\": {\n \"Type\": \"Xolair_WEB\"\n }\n },\n \"response\": {\n \"CardResponseInfo\": {\n \"MemberId\": \"1145725530\",\n \"Bin\": \"135791\",\n \"Pcn\": \"pcn\",\n \"Group\": \"group\",\n \"AllowableUses\": \"999\",\n \"BenefitAmount\": \"18000\",\n \"Status\": \"Expired\"\n },\n \"TransactionInfo\": {\n \"TransactionId\": \"f4a07b01-02e0-4bf3-85a0-06d5c6bfeda8\",\n \"TransactionCreatedDateTime\": \"2023-12-17T18:08:05.941Z\",\n \"EnrollmentStatus\": \"Expired\"\n }\n }\n },\n \"credentials_id\": \"1145725530\",\n \"Enrollment End Date\": \"2023-12-31\",\n \"Enrollment Status Reason\": \"Eligibility Expired\"\n}]" + } + ], + "userPermissions": [] + }, + "gitSyncId": "673f303e49c4c22729bdbe49_8169308a-58ef-4ff3-b830-8b5c5b8a075c", + "id": "Page1_J17", + "deleted": false + } + ], + "editModeTheme": { + "name": "Default-New", + "displayName": "Modern", + "isSystemTheme": true, + "deleted": false + }, + "publishedTheme": { + "name": "Default-New", + "displayName": "Modern", + "isSystemTheme": true, + "deleted": false + } +} diff --git a/app/client/cypress/support/Pages/HomePage.ts b/app/client/cypress/support/Pages/HomePage.ts index b482db49d58..b231b0f12dd 100644 --- a/app/client/cypress/support/Pages/HomePage.ts +++ b/app/client/cypress/support/Pages/HomePage.ts @@ -89,7 +89,7 @@ export class HomePage { private _workspaceImport = "[data-testid=t--workspace-import-app]"; public _uploadFile = "//div/form/input"; private _importSuccessModal = ".t--import-app-success-modal"; - private _forkModal = ".fork-modal"; + public _forkModal = ".fork-modal"; public _appCard = (applicationName: string) => "//span[text()='" + applicationName + @@ -129,7 +129,6 @@ export class HomePage { private _backToEditor = ".t--back-to-editor"; private _editorSidebar = ".t--sidebar-Editor"; private _membersTab = "[data-testid=t--tab-members]"; - public _searchWorkspaceLocator = (workspaceName: string) => `[data-testid="${workspaceName}"]`; public SwitchToAppsTab() { From ada8c84a8c8f9734e072a056df666fe100853851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNandanAnantharamu=E2=80=9D?= <“nandan@thinkify.io”> Date: Sat, 21 Dec 2024 09:30:29 +0530 Subject: [PATCH 5/5] added test for bugs related to jsobjects --- .../JSObject/JSObject_ForkApp_spec.ts | 32 +++++++++++++++++++ app/client/cypress/limited-tests.txt | 1 + .../cypress/support/Objects/CommonLocators.ts | 2 ++ 3 files changed, 35 insertions(+) diff --git a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts index 6d9a933ab96..95f704a1960 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts @@ -1,10 +1,16 @@ import { agHelper, assertHelper, + entityExplorer, homePage, + jsEditor, locators, } from "../../../../support/Objects/ObjectsCore"; import HomePage from "../../../../locators/HomePage"; +import { + PageLeftPane, + PagePaneSegment, +} from "../../../../support/Pages/EditorNavigation"; describe("Fork application", {}, function () { it("1. Fork app and verify", () => { @@ -16,11 +22,37 @@ describe("Fork application", {}, function () { "Fork application", ); agHelper.GetNClick(locators._forkAppToWorkspaceBtn); + agHelper.FailIfErrorToast(""); assertHelper.AssertNetworkStatus("@postForkAppWorkspace", 200); agHelper.WaitUntilEleDisappear(homePage._forkModal); homePage.NavigateToHome(); agHelper.AssertElementExist( `${homePage._applicationCard}:contains('JS object testing upto 1.5 MB (1)')`, ); + homePage.EditAppFromAppHover("JS object testing upto 1.5 MB (1)"); + PageLeftPane.switchSegment(PagePaneSegment.JS); + for (let i = 1; i <= 11; i++) { + agHelper.GetNClick(locators._entityTestId(`JS${i}`)); + agHelper.FailIfErrorToast(""); + agHelper.AssertClassExists(locators._entityTestId(`JS${i}`), "active"); + } + for (let i = 12; i <= 17; i++) { + agHelper.GetNClick(locators._entityTestId(`J${i}`)); + agHelper.FailIfErrorToast(""); + agHelper.AssertClassExists(locators._entityTestId(`J${i}`), "active"); + } + + jsEditor.CreateJSObject('"MiddleName": "Test",\n', { + paste: false, + toRun: false, + completeReplace: false, + shouldCreateNewJSObj: false, + lineNumber: 5, + }); + agHelper.GetNClick(locators._entityTestId("J16")); + agHelper.AssertClassExists(locators._entityTestId("J16"), "active"); + agHelper.GetNClick(locators._entityTestId("J17")); + agHelper.AssertClassExists(locators._entityTestId("J17"), "active"); + agHelper.GetNAssertContains(".CodeMirror-line ", '"MiddleName": "Test"'); }); }); diff --git a/app/client/cypress/limited-tests.txt b/app/client/cypress/limited-tests.txt index 4bf48a785dd..5964a732246 100644 --- a/app/client/cypress/limited-tests.txt +++ b/app/client/cypress/limited-tests.txt @@ -1,5 +1,6 @@ # To run only limited tests - give the spec names in below format: cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts +cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts # For running all specs - uncomment below: #cypress/e2e/**/**/* diff --git a/app/client/cypress/support/Objects/CommonLocators.ts b/app/client/cypress/support/Objects/CommonLocators.ts index 65d25158a31..06e0fa070eb 100644 --- a/app/client/cypress/support/Objects/CommonLocators.ts +++ b/app/client/cypress/support/Objects/CommonLocators.ts @@ -347,4 +347,6 @@ export class CommonLocators { _entityItem = "[data-testid='t--entity-item-Api1']"; _rowData = "[data-colindex='0'][data-rowindex='0']"; _editorTab = ".editor-tab"; + _entityTestId = (entity: string) => + `[data-testid="t--entity-item-${entity}"]`; }